Forum Moderators: not2easy
I'm not looking for a container inside, I know that one but would like to avoid cluttering unneeded elements in the xhtml and keep the fix the IE stuff all in the ie-only CSS.
Something like this (but then working):
body {width:expression(document.body.clientWidth < 800? "800px" : document.body.clientWidth > 1024? "1024px" : "auto");}
I don't mind if it's a big kludge in the IE6 CSS at all as long as the xhtml and the standards compliant CSS are clean.
BTW: body in IE6 doesn't want any width (not even a fixed value), let alone the min-width and max-width kludge above.