It depends, if you put some element inside the div and table / div, and let the height of the div let it be 500px, then the element inside it with a height of 100% will be equal to this div.
If you want some element to fit the whole page, you will have to place it under the element that has the actual 100% of the browser, for example, this is usually the main part of the table or the parent div.
EDIT:
I have not tried below, but you can also do this using absolute positioning:
<style type="text/css"> div { position:absolute; top:0px; left:0px; width:100%; height:100%; } </style>
But this approach is not always ideal. If you are sure, you can implement this :)
Sarfraz Dec 21 '09 at 6:43 2009-12-21 06:43
source share