|
Posted by Greg N. on 03/11/06 14:25
Manfred Ullrich wrote:
>>table {font-family: arial, verdana, sans-serif; font-size:100%;}
>
> I suppose your hint only works with stylesheets.
> Isn't it possible to manage the problem without stylesheets?
If it is external style sheets that you're uncomfortable with, you can
put a style section within the <head> part of your document:
<head>
<style type="text/css">
table {font-family: arial, verdana, sans-serif; font-size:100%;}
</style>
</head>
And if you feel that's still too exotic, you can put the style attribute
in the <table> tag itself, like so:
<table style="font-family: sans-serif; font-size:100%;}">
--
Gregor mit dem Motorrad auf Reisen:
http://hothaus.de/greg-tour/
[Back to original message]
|