CSS multi-column layout (was Re: From CSS to DSSSL)

On 17 Apr 97 at 15:23, Todd Fahrner wrote:

> (if only css
> could accommodate multi-column layout....)

What about the following, using CSS Positioning:

div.col1 { position: absolute; left: 1%; width: 31% }
div.col2 { position: absolute; left: 35%; width: 48% }
div.col3 { position: absolute; left: 70% }

and then

<DIV CLASS=col1>
<!-- Column 1 -->
</DIV>
<DIV CLASS=col2>
<!-- Column 2 -->
</DIV>
<DIV CLASS=col3>
<!-- Column 3 -->
</DIV>

Or is that not what you meant?

Liam Quinn
===============  http://www.htmlhelp.com/%7Eliam/  ===============
Web Design Group            Enhanced Designs, Web Site Development
http://www.htmlhelp.com/    http://enhanced-designs.com/

Received on Thursday, 17 April 1997 20:32:49 UTC