Font size in % of a table

liunx

Guest
My designed my webpage using tables and CSS. It looks good at 800*600 but when I change the resolution to 1024*800 or 1280*1024 the fonts are very small. What can I do?

<!-- m --><a class="postlink" href="http://members.cox.net/businessmarketers/Can">http://members.cox.net/businessmarketers/Can</a><!-- m --> I make the font size take up a percentage of the <TD> of the table it is in, like the font size is 80% of the td size?You can use absolute sizes, one of the following words (see <!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS2/fonts.html#propdef-font-size">http://www.w3.org/TR/CSS2/fonts.html#propdef-font-size</a><!-- m -->):

[ xx-small | x-small | small | medium | large | x-large | xx-large ]

You can set percentage font sizes, but that is relative to the parent's font size not the containing block. You could also try em units.

Adam
 
Back
Top