|
I wouldn't even necessarily do it that way. If all you're doing there is showing images, there's no reason to stick in additional divs just to contain them, I'd just float the images inside a containing div and define the margins between them.
So, you'd have something like this:
<div id="pageBottom">
<img class="floatLeft" src="images/image1.jpg" />
<img class="floatLeft" src="images/image2.jpg" />
<img class="floatLeft" src="images/image3.jpg" />
<br class="brclear" />
</div>
Or, you could just add clear:both to the #footer, that would also clear the floats above.
In the css you'd then have the class "floatLeft"
.floatLeft{
float: left;
margin: 3px; (puts 3px of margin on all sides)
}
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|