我试图从最后一个元素中删除边框底部,但它会影响所有元素。
这就是我现在所拥有的。
HTML
<div class="cv-content">
</div>
<div class="cv-content">
</div>
CSS
.cv-content{
width:400px;
float:left;
border-bottom:1px solid #ccc;
}
.cv-content:last-child{
border-bottom:0px solid #ccc;
}