Forum Moderators: not2easy
In IE there is only 1 visible image of 4 images on the page. The 3 that do not appear are floated either right or left.
They do appear in Firefox and I believe other browsers...
I'm using code like this:
<img src="http://www.site.com/image.jpg" style="float: right; border: 1px solid black; padding: 5px; margin: 5px;" alt="alt" /> Thanks
i have no idea what the sense in that is
On your page, because the container was not floated, it was making the container only big enough to hold one image (I'm guessing the container had no specified width, but even thismay not be true). By applying float:left (float:none doesn't work because it sets the element as not floated), you make the container reach out and wrap around ALL the floats.
Bottom line, if you have more than one float in a container, float the container, too.