Any way of doing very thin border lines around all the cells with very minimal code ?
Hi all, is there any way of getting a very thin border line around all the cells, without any css and without styling each individual cell please?
HTML Code:
<table width="27%" id="table1" cellspacing="1" border="0.6em" cellpadding="0">
<tr>
<td width="57" style="border-style: solid; border-width: 1px"> </td>
<td width="61" style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
<td width="70" style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
<td style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
</tr>
<tr>
<td width="57" style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
<td width="61" style="border-style: solid; border-width: 1px"><font size="2">30</font></td>
<td width="70" style="border-style: solid; border-width: 1px"><font size="2">120</font></td>
<td style="border-style: solid; border-width: 1px"><font size="2">180</font></td>
</tr>
<tr>
<td width="57" style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
<td width="61" style="border-style: solid; border-width: 1px"><font size="2">15</font></td>
<td width="70" style="border-style: solid; border-width: 1px"><font size="2">60</font></td>
<td style="border-style: solid; border-width: 1px"><font size="2">90</font></td>
</tr>
<tr>
<td width="57" style="border-style: solid; border-width: 1px"><b><font size="2">Text</font></b></td>
<td width="61" style="border-style: solid; border-width: 1px"><font size="2">10</font></td>
<td width="70" style="border-style: solid; border-width: 1px"><font size="2">40</font></td>
<td style="border-style: solid; border-width: 1px"><font size="2">60</font></td>
</tr>
</table>