I'm facing an issue with a table on a page with a gray background. The challenge is to remove the borders of the cells in the table.
<table width="510">
<tbody>
<tr>
<td style="background-color: #fff;" colspan="2" width="510"></td>
</tr>
<tr>
<td style="background-color: #fff;"></td>
<tdstyle="background-color: #fff;"></td>
</tr>
<tr>
<td style="background-color: #fff;"></td>
<td style="background-color: #fff;"></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</tbody>
</table>
Despite trying various solutions like adding a .no-border class border:0;
to the <tr>
or using inline css for the <td>
, the border remains visible as shown in the image below.
https://i.stack.imgur.com/1wvnq.jpg
Any suggestions on how to completely remove the border around all table cells?