|
Posted by Beauregard T. Shagnasty on 10/16/06 20:06
charles cashion wrote:
> Since I first posted my question, I googled for font-family and
> came up with the "td {font...". The "td {font... " has some
> influence on the teXt within the table, but it (the resultant
> font) is very weak. If nothing else, I would like to specify
> bold, but must I install <b> within every <td> element?
td {
font-family: arial, sans-serif;
font-size: 1.2em;
/* size=+1; is wrong */
font-weight: bold;
}
Or write it all as one,
td {
font: bold 1.2em arial, sans-serif;
}
--
-bts
-Motorcycles defy gravity; cars just suck
[Back to original message]
|