<div id="wrapper">
<div id="main-content">
//my main content
</div>
</div>
#wrapper{
height:100%!important;
min-height:700px!important;
}
#main-content{
height:100%!important;
}
Despite setting the height of my main content div to be 100%, I'm still unable to match it with the height of the wrapper div. Is there something that I am overlooking?
Thank you.