Helping ordinary people create extraordinary websites!

Go Back   Web Development Forum > Website Designing > HTML/CSS
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-24-2008, 09:56 PM
Junior Member
 
Join Date: Jan 2008
Posts: 22
Default CSS Layout - 3 Column Plus

How can I do a three column layout that will maintain the same height across the page no matter what the height of either column.

Eg.

column 1 - column 2 - column 3

if column 1 is very long then column 2 & 3 should be equally long.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-24-2008, 11:27 PM
ryanhellyer's Avatar
Super Moderator
 
Join Date: Dec 2007
Posts: 685
Default

Hi.
There are a number of ways to do this. But the most common (and easiest) way is to use Faux columns. This involves using a block element (usually a DIV) with a background image which repeats the image to the bottom of the block. Then by adding floated columns with this DIV tag you can mimic the look of real columns even though the columns may not reach the bottom of the block.

Here's a demo of the sort of code you can use to achieve this:
Code:
<div style="margin:0 auto;width:800px;background:url('background.png') repeat-y;">
  <div style="float:left;width:200px;">
    Lorem Ipsum
  </div>
  <div style="float:left;width:400px;">
    Lorem Ipsum
  </div>
  <div style="float:left;width:200px;">
    Lorem Ipsum
  </div>
</div>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

All times are GMT -5. The time now is 07:39 AM.


Website Design by Ducani Media Group
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.