是否有伪选择器或方法来检测<section>
带有 id 的标签。即<section id="no_display">
?
我有一个标题,它的底部边距为 35px。但是,我不想在一页上应用下边距,但我想在所有其他页面上应用它。
有没有一种方法可以检测 id 并且不应用边距?
<header>
//stuff here
</header>
<section id="no_display">
//other stuff here
</section>
因此,如果<header>
紧随其后的是section id="no_display"
,则不要应用底部边距
希望这是有道理的。