I have a table, which i want it to be cellspacing= 0 . but the space between 2 tds become 7 px.
Is that possible ?
CODE
<table cellspacing="0" border="0">
<tr>
<td>
first content
</td>
<td>
Second content
</tr>
</tr>
</table>
<tr>
<td>
first content
</td>
<td>
Second content
</tr>
</tr>
</table>
I have tried a few things like :
td class="space"
.space { margin-left: 7px;}
or
.space {border-left-width : 7px;}
None seems to work.
Any idea?