If you use deprecated HTML then the font element can not be placed around block elements (such as tables, table data cells, or paragraphs).
Switching to CSS is the way to go for layouts, http://stone.thecoreworlds
It is generally advisable to not specify font-sizes using pixels. Units relative to user preferences are preferred (i.e. em, ex, &) as these are much less likely to render your page unreadable.
Main Topics
Browse All Topics





by: thanassisPosted on 2003-04-24 at 06:13:32ID: 8388274
You can use styles
<html>
<head>
<style>
td {color: #000000; font-family: Tahoma, Verdana; font-size: 11px}
</style>
</head>
<body>
...your tables here...
</body>
</httml>