Ello.
I'm trying to set the widths for my first three rows of cells and then have a bottom row with different cell widths. However, the first three rows take on the same widths as the bottom row.
Is there a way to do the above and have them retain their specified widths?
I'm trying to set the widths for my first three rows of cells and then have a bottom row with different cell widths. However, the first three rows take on the same widths as the bottom row.
Code:
<table>
<tr>
<td width="80%"> ... </td>
<td width="20%"> ... </td>
</tr>
<!-- 2 more rows like this. -->
<tr>
<td width="50%"> ... </td>
<td width="50%"> ... </td>
</tr>
</table>
Comment