Full Height Template
I am trying to code a template so that it will take up the full height of the screen. I tried using height: 100%; , but that didn't work. Here is the CSS:
HTML Code:
/* Main Content */
#main {
width: 700px;
height: 100%;
border-left: 1px solid #999999;
border-right: 1px solid #999999;
border-top: 1px solid #999999;
background-color: #FFFFFF;
float: left;
}
#left_container {
width: 150px;
height: 100%;
margin-right: 5px;
border-right: 1px solid #999999;
float: left;
}
What should I change to make this work? Thanks
Thanks DD, you saved me countless times
Bookmarks