html - element:last-child effects all the element and not only last -
im trying remove border-bottom last element, affect elements.
this have 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; }
every .cv-content
is :last-child
of .cv-item
. use .cv-item
instead:
.cv-item:last-child .cv-content {
Comments
Post a Comment