Forum Moderators: not2easy
I suggest creating a stylesheet just for NN4, using pixel sizing. Then create another "generic" stylesheet for all the later browsers using ems.
Bring in the two stylesheets in the <head> like this:
<link rel=stylesheet href="http://example.com/nn4.css"><STYLE TYPE="text/css">
@import url(http://example.com/generic.css);
</STYLE>Browser specific CSS [webmasterworld.com]
Because NN4 doesn't support @import, it will get pixel sizes. Everything else will get the em sizing that comes in later in the cascade.
just thought maybe i was missing something...thanks for all of the help.