Reputation: 2277
Im trying to remove border-bottom from the last element, but it affect all the elements.
This is what I have for now.
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;
}
Upvotes: 0
Views: 288
Reputation: 191749
Every .cv-content
is the :last-child
of .cv-item
. Use .cv-item
instead:
.cv-item:last-child .cv-content {
Upvotes: 3