I.E. Float Bug.
-
I.E. seems to have a load of float bugs, each with a different fix. I’ve read many websites with fixes for many bugs, but I can’t seem to find any information on the problem I’m having.
My website is https://www.slashjoke.com
On the main page, in the center column, I display an image (or two) based on the catagory(s) of the post. The image(s) are floated left with the following code:
.catimage {
float: left;
width: 40px;
height: 31px;
position: relative;
}The “position: relative” is there to counteract the ie “peekaboo” bug. (otherwise the images hide behind the background color)
In Firefox, everything looks fine. In IE the second image (if there is one) is shifted down about 10px, and then the text is shifted down another 10px.
I pulling my hair out. Anyone have any ideas?
- The topic ‘I.E. Float Bug.’ is closed to new replies.