在我的情况下,我很难:last-child
上班。
HTML:
<div class="test">Some content</div>
<div class="test">Some content</div>
<div class="test">Some content</div>
<div class="action">Some other content</div>
CSS:
div.topic {
border-bottom: 1px solid black;
}
div.topic:last-child {
border-bottom: none;
}
最后一个div.test
仍然在底部有边框。我认为的问题是border-bottom: none
适用于最后一个 div,div.action
而不是类测试的最后一个 div。
我该如何解决?