Re: css in <table>

Tables should inherit from the BODY element, but they don't in either IE4 or
Communicator.

TD, TH should inherit from the TABLE element, they do in IE4 but not in
Communicator.

To cover all bases use BODY, TH,TD{font-size:32pt;}

Play around with the following code(below signature) to see what I mean

Frank

Frank Boumphrey
XML and style sheet info at Http://www.hypermedic.com/style/index.htm
Author: - Professional Style Sheets for HTML and XML http://www.wrox.com

<HTML>
<HEAD>
<STYLE TYPE="text/css">
 TH,TD{font-size:32pt;}
 .bigfont{font-size:32pt;}
</STYLE>
</HEAD>
<BODY class="bigfont">
 some text
<P> more text
<DIV>and some more</DIV>
<TABLE>
 <TH>A Table Heading</TH>
 <TR><TD>some text</TD></TR>
</TABLE>
</BODY>
</HTML>
-----Original Message-----
From: Sue Jordan <sjacct@worldnet.att.net>
To: www-style@w3.org <www-style@w3.org>
Date: Sunday, July 12, 1998 7:23 AM
Subject: Re: css in <table>

Received on Sunday, 12 July 1998 11:42:35 UTC