我的样式表中有一个通用的CSS规则,如下所示:
#page.grid-parent {
padding-left: 20px;
padding-right: 20px
}
我想做的是从我拥有的一些自定义分类法归档页面中删除该规则。
所以,如果我看看body 示例页面的标记我看到:
<body class="archive tax-country term-saudi-arabia term-445 wp-custom-logo wp-embed-responsive cookies-set cookies-accepted post-image-below-header post-image-aligned-center no-sidebar nav-float-right fluid-header separate-containers active-footer-widgets-0 header-aligned-left dropdown-hover elementor-default" itemtype="https://schema.org/Blog" itemscope>
我确信我可以使用“税收国家”作为钩子来隐藏CSS规则。
为了在这些页面中隐藏CSS规则,我尝试了以下方法:
#page.grid-parent.tax-country {
padding-left: 0px;
padding-right: 0px
}
。。。。但它不起作用。。。
我还尝试使用#税务国家ID,如下所示:
#tax-country.grid-parent {
padding-left: 0px;
padding-right: 0px;
}
仍然没有快乐。。。