Posted by Harlan Messinger on 10/16/06 20:04
charles cashion wrote:
> OK guys, let's try this again...
>
> I have tried to change the font size and family
> of the text elements within a <table> ... </table>
> "IT" is Firefox 1.5.0.7 browser.
>
> After some trial and trial and trial and trial,
> here is where I am now...
>
> <html>
> <head>
> <style>
> td {font-family: arial, verdana, sans-serif; size=+1; }
There's no such thing as size=+1 in CSS.
> </style>
> <body>
> <!-- font face="comic sans ms" size=+1 -->
> <!-- span style='font-size: 10.0pt; font-family: Arial' -->
> <!-- span style="font-size: 13.5pt; font-family: Arial; color: navy;" -->
> <!-- span style="font-size: 14pt; font-family: san-serif; color:
> navy;" -->
> <!-- span style="font-size: 18pt; font-family: san-serif; " -->
Neither the FONT element nor the SPAN element can contain a table. Each
can only contain inline (non-block) elements. You shouldn't be using
FONT tags anyway. They're obsolete.
[Back to original message]
|