Hi,
I'm trying to create a 3 column layout with the left and right column of fixed width and the middle fluid. There are plenty of examples of 3 column layouts either as fixed width or as fluid widths. Does any one have one with a combination of the two. I've spent most of today playing with it but with little success.
I can get the first two columns to work but not the third!
<style>
#leftColumn {width:200px; background:#ff0; border:1px solid #000; float:left; position:relative;}
#w880iRightContainer {border:3px solid green; margin-left:205px;}
#centreColumn {background:#f0f; border:1px solid #000; margin-right:205px; float:left;}
#rightColumn {width:200px; background:#0ff; border:1px solid #000; float:right;}
</style>
<div class="tabContent">
<div id="leftColumn">
<h1>leftcontent</h1>
<p>#leftColumn</p>
</div>
<div id="centreColumn">
<h1>centercontent</h1>
<p>#centreColumn</p>
</div>
<div id="rightColumn">
<h1>rightcontent</h1>
<p>#rightColumn</p>
</div>
</div>
Any help or suggestions, would be much appreciated!
Cheers, Des




Bookmarks