ok, I believe that this is so common but I can't seem to find an answer anywhere. Basically I want a two column div layout with the left column being fluid and the right column fixed. I want the heights of both these columns to fill the parent container div.
Currently, my right div does not fill the 100% of the height and I don't know what's going wrong?
HTML divs are:
<div id="nmv_div_twoColumnLayoutContainer">
<div id="nmv_div_twoColumnLeftContainer">
<div id="nmv_div_twoColumnLeft">
<p>the left div is good height</p>
<p>As this is the div that will typically have the most data</p>
</div>
</div>
<div id="nmv_div_twoColumnRightContainer" class="roundedCorners">
<div id="nmv_div_twoColumnRight">
the right div is a menu div but is only showing part
</div>
</div>
<div class="clearBoth"></div>
</div>
And my associated css
.roundedCorners {
-moz-border-radius: 2px;
border-radius: 2px;
}
.clearBoth {
clear: both;
}
div#nmv_div_twoColumnLayoutContainer
{
overflow: hidden;
}
div#nmv_div_twoColumnRightContainer
{
float: right;
margin-left: -250px;
width: 250px;
background-color: gold;
}
div#nmv_div_twoColumnLeftContainer
{
float: left;
width: 100%;
background-color: red;
}
div#nmv_div_twoColumnLeft
{
margin: 0 260px 0 0;
height: 100%;
background-color: yellow;
}
div#nmv_div_twoColumnRight
{
width: 250px;
background-color: green;
height: 100%;
}
display: table/table-row/table-cell/...– biziclop Jul 10 '12 at 22:57