Looking to clear a section following a div with the class name "last." Is it possible to achieve this using only CSS? I am unable to directly edit the HTML.
Here is the current HTML code:
<div class="column">test<br />test</div>
<div class="column">test</div>
<div class="column">test</div>
<div class="column last">test</div>
<div class="column">test<br />test</div>
<div class="column">test</div>
<div class="column">test</div>
<div class="column last">test</div>
Here is the CSS being used:
.column{ width:250px; margin-right:10px; float:left;}
.column.last{ margin-right:0px;}
Any suggestions or solutions?