Currently I have 1 table (html) with 2 tables (html) whose problem is that when displayed on a small screen the headings are mismatched with the table
My table (example):
<table width="100%" >
<tr>
<table width="100%" >
<tr>
<th width='25%'>nombre0</th>
<th width='25%'>nombre1</th>
<th width='25%'>nombre2</th>
<th width='25%'>nombre3</th>
</tr>
</table>
</tr>
<tr>
<td>
<table width="100%" >
<tr>
<td width='25%'>0</td>
<td width='25%'>1</td>
<td width='25%'>2</td>
<td width='25%'>3</td>
</tr>
</table>
</td>
</tr>
</table>
In this case when seen on a smaller screen 1, 2, end under name0 I would like that in this case without stopping using both tables within the main table to be able to make sure that the headings do not get out of line and that they continue to collude.