Titan85
03-18-2007, 01:16 AM
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:
/* 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
/* 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