It is kind of a guessing game as to what to set your tables to. A good rule of thumb is to view your page full screen in the resolution you like the best. Determine the inner width of the window or use the screen width. Take the current width of each table and divide by this width. Say you are viewing at 800x600 and the current width is 545. That gives 545/800 = 0.68125 or roughly, 68%. Your figures will be more accurate if you use the inner width. to find that, temporarily put this script on your page as the very last thing before the closing </body> tag:
Code:
<script type="text/javascript">
var ns6 = (document.getElementById && !document.all) ? 1 : 0;
function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}
function winWid(){ return (ns6) ? window.innerWidth:iecompattest().clientWidth; }
var width=winWid();
alert(width)
</script>
When you load or refresh your page, this will make an alert box with the inner width. Use that number minus any left and right margins you have set for the body or -20 (the approximate default horizontal body margin) if you have set no margins for the body. Even with this most accurate width you may still need to guess a little. For example, if after dividing your table's width by the inner or the screen width you get say 35% as your width, you may find that 36% looks better or maybe 34.5% or whatever looks good to you.
Bookmarks