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
I will complete everyones answer....You need to make a style for the body and apply a margin:0; padding:0;
body
like this:
body{ margin:0; padding:0; }
after this you can apply a width:100% and a height:100% to every DIV you like.
width:100%
height:100%
good luck