Les,

Why not try this:

  font{font-size: 100%;}

That seems to do the trick in every major browser. It'll make the text in
the font tag the same size as the stuff outside.

Additionally, you could strip out the font tags in the database pretty
easily:

  UPDATE mytable SET description = REPLACE(description, '<FONT size=2>',
'');
  UPDATE mytable SET description = REPLACE(description, '</FONT>', '');

Of course, if they keep putting bad data back in it, that doesn't really
solve the problem... You really ought to sanitize the data being inserted in
the db.

Jon 

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to