我无法让: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.action
的最后一个div而不是类测试的最后一个div。
我该如何解决?
答案 0 :(得分:2)
您必须更新标记才能获得所需的结果。将未知项目包装在包装器中,例如:
<div id="list">
<div class="topic">Some content</div>
<div class="topic">Some content</div>
<div class="topic">Some content</div>
</div>
<div class="action">Some other content</div>
然后使用这个CSS:
#list .topic {
border-bottom: 1px solid black;
}
#list .topic:last-child {
border-bottom: none;
}
答案 1 :(得分:0)
我建议使用first-child
,而不是last-child
。
div.topic {
border-top: 1px solid black;
}
div.topic:first-child {
border-bottom: none;
}
这适用于您当前的HTML,并且更兼容跨浏览器。