IE handling of CSS

September 29, 2005

It pisses me off. I’ve just found out that it screws up on the new and shiny theme for my blog (it puts the content of the sidebar to the left at the bottom). It must die.

One Response to “IE handling of CSS”

  1. Will J said:

    I had similar problems on my joke site (http://jokestop.co.uk/), I had to incorporate quite a few hacks to get the CSS looking reasonable in IE, for instance setting an IE readable height on the header div and then overiding that in a selector that IE can’t see:

    #header {
    /* snip */
    height: 105px;
    /* snip */
    }

    html>body #header {
    height: 104px;
    }

    A standard hack, but it really shouldn’t be necessary. I agree, IE should be inhumed.

Leave a Reply