I have a div called "content-left" within another "main-content". I want to have the child div assumes 100% of the parent's height.
#main_content {
display: table;
width: 99%;
margin-left: auto;
margin-right: auto;
}
#content-left {
width: 250px;
float: left;
display: table-cell;
padding-bottom: 8px;
background-color: #F6F5F4;
height: 100%;
}
#content-rightside {
width: 782px;
float: left;
display: block;
padding-left: 10px;
}