What does Netscape want/expect
An overly simplified illustration of what I'm doing:
<head>
<style>
.Text { font-family: sans-serif; font-size: 10px; }
</style>
</head>
I specify the style using the class attribute:
<table>
<tr>
<td class="Text">My Text</td>
</tr>
</table>
This technique renders as desired in IE, but not Netscape. Is there a technique that works in BOTH IE and Netscape?
If it's not apparent, I'm new to this.
Many thanks.
An overly simplified illustration of what I'm doing:
<head>
<style>
.Text { font-family: sans-serif; font-size: 10px; }
</style>
</head>
I specify the style using the class attribute:
<table>
<tr>
<td class="Text">My Text</td>
</tr>
</table>
This technique renders as desired in IE, but not Netscape. Is there a technique that works in BOTH IE and Netscape?
If it's not apparent, I'm new to this.
Many thanks.