- From: David Norris <kg9ae@geocities.com>
- Date: Thu, 17 Dec 1998 20:44:38 -0500
- To: "Daniel Bulleros" <DBulleros@iwiphil.com>
- Cc: <www-html@w3.org>
> Is Netscape 4.x still not conversant with CSS? I have this piece of code: Navigator 4.X is not CSS 1.0 compliant, regardless of others' opinions. The term compatible is perhaps more accurate. Navigator supports most of the CSS attributes. It does not support shorthand attributes, such as FONT. Also, Navigator 4.X often causes memory-related access violations if you attempt to use transitional attributes along with their CSS counterparts. (i.e. Navigator is attempting to overwrite memory in use by another application.) <SOMETAG align="center" style="text-align: center;"> will force the OS to kill Navigator 4.X nearly every time, as to not disrupt the operation of other applications. (This problem was introduced around version 4.05, or so. This happens on both X11 and Windows, probably Mac as well.) Your style sheet. > <style type="text/css"> > h1 { font: 72pt Tahoma bold; color:lime; background:lightblue } > </style> Netscapified style sheet. <HTML> <head> <style type="text/css"> h1 { Font-Size: 72pt; Font-Family: Tahoma; Font-Weight: bold; Color: lime; Background-Color: lightblue; } </style> </head> <body text=crimson> <h1>H E L L O</h1> </body> </html> ,David Norris World Wide Web - http://www.geocities.com/CapeCanaveral/Lab/1652/ Page via mail - 412039@pager.mirabilis.com ICQ Universal Internet Number - 412039 E-Mail - kg9ae@geocities.com
Received on Thursday, 17 December 1998 20:45:23 UTC