I am trying to get the last instance of a div
with a class of one_third
. I have tried many different orders of the :last-child
but I can not get them to work.
Here is the structure
<div class="container">
<div class="one_third">One</div>
<div class="one_third">Two</div>
<div class="one_third">Three</div> <-- remove the margin from this one
<div class="clearfix"></div>
</div>
I tried doing
.container:last-child .one_third { margin-right: 0; }
this removes the margin from ALL divs with that class not just the last one. How can I get this to work? Thanks!