PDA

View Full Version : fonts in HTML tables



Tycho
Aug 8, 2005, 05:49 PM
I made an HTLM file like this:



<html><head></head><body><font face="Arial" size="2">
lolz
<table><tr><td>lolz</td></tr></table>
</font></body></html>


Result: http://img.photobucket.com/albums/v406/Tycho01/lolz.jpg

Apparently the font is bigger inside of tables. Is there any way I can negate this? Preferably without having to change it for every table entry. x_x

Getintothegame
Aug 8, 2005, 06:04 PM
I don't know what a 'HTLM' file is. http://pso-world.com/images/phpbb/icons/smiles/icon_razz.gif

Add style="font-size: 2pt;" in the <table> tag.

<font size=-1>[ This Message was edited by: Getintothegame on 2005-08-08 16:07 ]</font>

Tycho
Aug 9, 2005, 02:35 PM
Thanks, it's working. ^ ^;