Seeking help with tables within forms. Below is a stripped to the bones version of a page I'm working on in a Drupal 7 project. Can't figure out why the table overflows containing div. Any hints?
<form action="/whatever" method="post" accept-charset="UTF-8">
<div>
<table width="100%" word-wrap="break-word" table-layout="fixed">
<tr>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
<td>zzzzzzz xzxzxzzxzxzxzzx</td>
</tr>
</table>
</div>
</form>