试图为相邻兄弟添加上边距。
<div class="container">
<h2>Header 1</h2>
<p>Some text and sentences...</p>
<h2>Header 2</h2>
<p>Some more text and sentences..</p>
</div>
通常我会通过在相邻兄弟姐妹上使用 css 来完成“标题 2”的上边距。
p + h2{
margin-top: 12px;
}
但是,h2 的边距定义为
.container h2{
margin: 24px 0px;
}
如何在覆盖 .container h2 css 时使相邻的兄弟 css 工作?