table fontsize problems
Status: Abandoned
Brought to you by:
renatoac
got some trouble with changing the fontsize. I can
change it outside of tables, but when trying to chane
it inside tables it doesn't work! the fontsize changes
are not recognized at all in these examples:
example1:
<table>
<tr>
<td align="right">
<SPAN style="FONT-FAMILY: Arial; FONT-SIZE: 5pt;">
asdfasdf
</SPAN>
</td>
</tr>
</table>
example2:
<table>
<tr>
<td align="right" style="FONT-FAMILY: Arial; FONT-SIZE:
5pt;">
asdfasdf
</td>
</tr>
</table>
example3:
<style>
.mystyle {
font-size: 8px;
}
</style>
<table>
<tr>
<td class="mystyle">
asdfasdf
</td>
</tr>
</table>