Forum Moderators: not2easy
div#content
{
position: absolute;
top: 149px;
left:380px;
width:600px;
background-color: #5C6743;
bottom: 0px;
}
<div id="content"> aljdflajdslfajsdfl<div>
This should be straight forward and in Firefox it does what it should in IE it doesn't stretch down to the bottom.
Is there a work around with out using faux columns
To do this you may need to convert to using floats and change the css to following:
[i]div-parent-element[/i] div#content
{
overflow : hidden;
}div#content
{
float : right;
width:600px;
background-color: #5C6743;
padding-bottom : 10000px;
margin-bottom : -10000px;
}