Why does the size autoresize and how can I stop it?
<!DOCTYPE html>
<style>td{border:1px solid black;width:100px;}</style>
<table>
<tr>
<td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td>
<td></td><td></td><td></td><td></td><td></td>
</tr>
</table>
If there only one <td></td>
then it displays as 100px but when they exceed the screensize they just bulk up by size reduction.
Like why is the top row resized in this http://jsfiddle.net/gj95X/3/
But I don't want any of them to resize.