Forum Moderators: open
N4 only renders external stylesheets
Use the regular <link> tag. (I tried inline styles with 4.74 which seem to "turn off" the external style sheet from the style="" position on.)
Sometimes it's a good idea to provide two different style sheets (one for N4, one for the rest)
In the HTML document <link> to N4-Stylesheet, and from there @import the other one, since N4 doesn't recognize the @import command.
N4 doesn't recognize form element widths like for type="text"
Use size="x" to adjust roughly to the desired width in N4 and then use width:Ypx; to satisfy the other brothers. It is also a good idea to specify the font+size for form elements.
N4 only draws table cells that have content
Having empty cells <td></td> leads to some confusion, especially when it comes to backgrounds. Inserting will solve some problems. If the is too large, use a (transparent) spacer gif instead.
Good additional ressources are:
CSS Bugs and Workarounds: [css.nu...]
Bug Guide Netscape4: [richinstyle.com...]
Any other important issues you had personal expierence with?
Take care
Images linked to in stylesheets from another folder don't work.
The reason is the address always defaults to the root! Eg:
.index2 {background-image: url(../images/backlogo5.gif);}
.index2 {background-image: url(../images/backlogo5.gif);
/*/*//*/ background-image: url(images/backlogo5.gif); /* */
}
<link rel="stylesheet" href="css/styles8.css" type="text/css" media="screen" />