I have a <div> that will not extend all the way down the page even with the height set to 100% on the <html> and <body> and the div itself. It will not display correctly in ie7 or firefox.
I have an external style sheet but this is basicly the structure of the page
<html>
<head>
<body>
<div id="wrapper">
<div id="colWrapper">
</div>
</div>
</body>
</head>
</html>
CSS:
html {height:100%;}
body{height:100%;}
#wrapper{height:100%;}
#colWrapper{height:100%}
I would like any help someone can give me thanks