I have multiple tables displayed as inline-block elements. However, i want to fix the widths so that they will out the horizontal space, giving each table a 33% width (3 tables per row). example code is as follows:
<table>
<thead>
<tr><th></th><th></th><th></th><th></th></tr>
</thead>
<tbody>
<tr><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
</tbody>
</table>
...repeat the above code 2 more times.
Now I can't seem to get it right. All the tables have the class attribute and are set to 33% width, but nothing seems to change.