Forum Moderators: open
I'm trying to create a table where some of the borders are hidden and some are not.For that reason I am treating each cell's style differently,but I'm having trouble with this.For instance,take a look at the table below.I wanted the second row to be without the bottom border but what I got is a table without borders at all.
Could you tell me what went wrong here?
Should I take a different designing approach?
Thanks.
<table style="border-collapse:collapse;" >
<tr>
<td style="border:1px double black;">
***ROW1,COL1***
</td>
<td style="border:1px double black;">
***ROW1,COL2***
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:hidden;">
***ROW2,COL1&COL2***
</td>
</tr>
</table>