Hi, folks

I'm thinking about liquid 3 column layouts using CSS (naturally), and am 
considering an arrangement something like this:
<body
<div  id="content">
[main content of page]
</div>

<div  id="menu">
[navigation bits of page]
</div>

<div  id="sidebar">
[sidebar content of page]
</div>
</body>
with the following CSS for positioning:

div#content {margin 0 185px 0 25%; width 100%}

div#menu {position: absolute; top: 0; left: 0; width:  145px; margin: 0;}

div#sidebar {position: absolute; top: 0; right: 0; width: 25%; margin 0;}

to achieve a 3 column liquid layout, with the first column fixed at 145px wide


Can you point out any likely pitfalls with doing this?

WBW
John M.


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to