我正在使用部分来确定页面的不同部分。这些部分的下边距为 90 像素,但是当在页面中创建/放入 ID 为“clients-full”的部分时,我希望出现在它之前/上方的任何部分的下边距为 0。我可以做这使用 CSS 选择器/伪选择器?
目前,这段代码对 ID 为“clients-full”的部分进行样式设置,但可以将其反转,以便我可以将 0 的底部边距应用于它之前的部分吗?
section + section#clients-full {
margin-top: -90px; // Negative margin to get around this problem...not ideal.
}