I have a problem creating a borderless table and cells of the same width.
To test this, I set the table background to red and the cell background to green. Part of the background of the table is always displayed.
Any ideas on how to make it the same size?
<table style="background-color:red; border-collapse:collapse; border:10px; width:550px;">
<tbody>
<tr>
<td style="background-color: green; color:white; width:100%;">can't get rid of red bit<td>
</tr>
</tbody>
</table>
source
share