Forum Moderators: not2easy
<HTML>
<style>
body { color : #333333; background-color : #ffffff; font-family : Verdana, Helvetica, Sans-serif; font-size : 11px; margin : 0px; }
table { font-size : 11px; line-height : 15px; }
td { border : 0px; padding-left : 3px; padding-right : 3px; padding-top : 2px; padding-bottom : 2px; line-height : 15px;}
strong { font-weight : bold; }
.tablerowstyle { color : #000000; background-color : #dedcd5; }
.light { color : #000000; background-color : #edece6; border-style : solid; border-top-width : 1px; border-bottom-width : 1px; border-color : #ffffff; }
</style>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY marginwidth="0" marginheight="0">
<table cellspacing="0" width="50" summary="" align="left" height="20%">
<tr class="tablerowstyle">
<th colspan="4" align="left" class="strong" width="65" height="51">Data1</th>
</tr>
<tr>
<td class="light" width="20" height="65">Data2</td>
</tr>
</table>
</BODY>
</HTML>
What can i do to make it look good in netscape? I guess iīm doing something in the <style> area that netscape doesnīt understand, and therefore doesnīt care about. Do you guys see anything obviously wrong?
Do i have to declare the font in every single tag that wants to use it?
Yep, for NN4.x you do ;(
However it's not that difficult to do
td, th, a, ul {
font-family : Verdana, Helvetica, Sans-serif;
font-size : 11px;
line-height : 15px;
}
then just add other elements as required seperated by commas
NN4.x just doesn't inherit font stuff (but then neither does IE in quirks mode..) so just easier to do this if you still have to design for it..
Suzy
PS I don't know what happened there.. the post went through before I'd finished typing?