Web Analytics Made Easy -
StatCounter The case of the phantom <img>.... - CodingForum

Announcement

Collapse
No announcement yet.

The case of the phantom <img>....

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • The case of the phantom <img>....

    Ok, here's the situation:
    I have <img>'s nested inside a <p>, which are being floated left for wrap-around purposes.
    The images aren't showing up in IE, however the text is wrapping around the space left for the image.

    This is the page in question ...
    And here's the <img>'s css, so that you don't have to go through all 400 lines
    Code:
    .contIMG{float:left;margin-right:1em;border:3px ridge #575757;}

    I take no responsibility for the above nonsense.


    Left Justified

  • #2
    SOLVED

    Position:relative..............
    Damn IE and its obsession with position:relative

    I take no responsibility for the above nonsense.


    Left Justified

    Comment

    Working...
    X