- From: Liam Quinn <liam@htmlhelp.com>
- Date: Thu, 17 Apr 1997 20:33:51 -0500
- To: www-style@w3.org
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