I am trying to align different tables with different amount of columns so the first two columns are align and the rest are independently align but using % it is very difficult and when resizing window it losses alignment.
That is why I was trying to align mixing with % and px on td, ex.
<table>
<tr>
<td width="100px"></td>
<td width="100px"></td>
<td width="50%"></td>
<td width="20%"></td>
</tr>
</table>
<table>
<tr>
<td width="100px"></td>
<td width="100px"></td>
<td width="70%"></td>
</tr>
</table>
But As does not look logical it does not seem to work.
Is there any way to get this working or an alternative?
Thanks.