Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 3 Views: 2,570 What you are doing is floating the div, not the images inside the div. You should target the images.
.float img {float: left; margin: 0 10px;}
<div class="float">img img img img</div>
That... |