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.
Just another London developer.
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.
September 29, 2005 at 10:16 am
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.