I have a html table inside a div but the table is getting out of the div’s width, here is what I am doing:
<div style="width: 920px">
<table style="width: 100%;">
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</div>
this is not working
You have an empty layout so there is nothing to see. If you add height, you can see how it looks:
EXAMPLE