<div class="spacer-200 green"> </div>
.spacer-200{ width:200px; height:10px;}.green{ background-color:#0F0;}
<img src="images/green.jpg" width="200" height="10"/>
I'd like to use blocks of solid colour to use as spacers in my site. Would the best practise be
1. Divs with background colour
with css like
2. 1px (or some size) Images of set colour, ie:
Or another method altogether?
Thanks!
Dave