RE: FONT vs CSS

At 09.19 +0200 98-09-10, Smith, Brooke wrote:
>"I use inherit to handle the problem of the FONT tag in CSS2 browsers (FONT
>required for non-CSS browsers) but how do I handle FONT in CSS1 browsers?"

I usually have a ground style which i set on the BODY element. By setting
the same style rules on FONT, pre-CSS interpretation of FONT is overridden
- in most cases.

BODY, FONT, TD, TH {
	font-family: "Verdana", "Geneva", sans-serif;
	font-size: small;
}

...

<TD><FONT SIZE="1" FACE="geneva, arial">Blah blah</FONT></TD>

...


___Carl_Johan_Berglund_________________________
   Adverb Information
   carl.johan.berglund@adverb.se
   http://www.adverb.se/

Received on Thursday, 10 September 1998 03:59:14 UTC