Posted by Toby Inkster on 05/06/06 02:18
arbpen wrote:
> To be perfectly honest with you, there isn't much you can do if they're
> using an editor like Front Page. FYI, deprecated elements _do_
> override style declaration
No they don't.
> <style type="text/css">
> p {font-family: serif;
> color: red
> }
> </style>
> </head>
> <body>
> <p><font color="#008000" face="Georgia">This should be in
> green</font>.</p>
>
> Will indeed be green, not red.
True, but this will be red:
<style type="text/css">
FONT { color: red }
</style>
</head>
<body>
<p><font color="#008000" face="Georgia">This should be in
red</font>.</p>
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|