In order to make height:100% active you need to set the height for
body and
html as well
Code:
html, body {height:100px;}
and you need to make #leftside
position:absolute instead of
position:relative;display:table;:
Code:
#leftside
{
background: none repeat scroll 0 0 #31507A;
position:absolute;
height: 100%;
width: 250px;
}
now that #leftside is invisible to #mainbody, you need to manually move #mainbody to the right equal to the width of #leftside:
Code:
#mainbody
{
margin: 0;
padding: 0 !important;
position: relative;
width: 1250px;
margin-left:250px;
}