| New Member | height: 100%; works if you set all containing blocks between the target div and the browser window to height: 100%; meaning that you have to set ....
html {height: 100%}
body {height: 100%}
div {height: 100%}
however, I would like the page to be fully standards-compliant...
is height: 100%; really not compliant and if not, what would be a better method? |