Forum Moderators: not2easy
In the content column I now want to place a fixed Left Column with a fluid right column.
e.g.
<div id="ContentLeft">
<div id="leftfixed">
content
</div
<div id="rightfluid">
content should fill the available width Textbox set to 100% width pushes this div to fill available space
</div>
</div>
<div id="rightcontent"
right content
</div>
the main content columns ids ContentLeft and Right are working as I intend.
div#leftfixed
{
float:left;
}
div#rightfluid
{
float:left;
width:auto;
/*width:100% doesn't work*/
}
not sure what I am doing wrong
[edited by: Fotiman at 4:15 pm (utc) on Aug. 4, 2006]