in CSS when you set something\'s width or height to 100% it really only sets it to 100% of the browser window. Is there any way to make it 100% of the whole page?
Le
It depends, if you put some element inside a div and table/div's and div's height is let's suppose 500px then the element within it with height 100% will be as much as this div.
If you want make some element fit the whole page, you will have to put it under an element having the actual 100% with of the browser eg this is usually main containing table or parent div.
EDIT:
I have not tried below, but you can also do it this way using absolute positioning:
But this approach is not always that ideal. If you are sure, you can implement that :)