Could someone please help me with my CSS side bar, it would fill in height. Please help
.sidebar1 {
float: left;
width: 20%;
background: #93A5C4;
height:100%;
top:0;
bottom:0;
}
Could someone please help me with my CSS side bar, it would fill in height. Please help
.sidebar1 {
float: left;
width: 20%;
background: #93A5C4;
height:100%;
top:0;
bottom:0;
}
You need to set the height of the html / body like
body, html {
height: 100%;
}
css trick is: you will need to set all the .sidebar1 parents and body, html to 100%