vote up 2 vote down star

Whenever I create my own personal web pages, I've always had this problem with using divs to create a multi-column layout. I use the float attribute to align them to the left or right, but when I make the browser window skinnier, the columns re-adjust where one column falls below the other and other things mess up with alignment. I would like the columns to stay put like all other websites do.

What is the best method for this?

flag

60% accept rate

8 Answers

vote up 2 vote down

The solution is not to use float for everything. Of course you can buy a template and "outsource" the problem, but usually the columnar layout of a webpage is attained using a combination of margins and positions (including negative values). Or - of course - tables, but beware of losing semantic value of the HTML when you use them (for example screen readers and linear parsers will be confused).

link|flag
vote up 4 vote down

There are several possible explanations:

1) If you have a fluid container with fixed-width columns, the container will resize and the columns will no longer fit. You can add a set width to the container or you can make the columns fluid (%-based). You can even just make one of the columns fluid if you use Nicole Sullivan's approach here: http://www.stubbornella.org/content/2009/07/23/overflow-a-secret-benefit/

2) If you are using an entirely fluid method already, but using IE6/7 to view it, you may be experiencing sub-pixel rounding errors at certain sizes. Nicole's approach solves that as well.

You don't need tables, just a bit of math.

link|flag
vote up -1 vote down

I'll probably be downvoted into oblivion for this, but until IE6 is gone from the face of the earth, using a table for a multi-column layout is really the safest, easiest way to go. Sure, it's not the "right" way to do it, but in this case the reward for doing it the right way is so miniscule that you might as well just drop in a table and move on to more important things.

Don't get me wrong; I love CSS. I just think that the pragmatic choice for multi-column layouts is still the table. You'll spend less time fighting with browsers and have more time to focus on the things that will really benefit your website's consumers.

link|flag
1  
Yeah, and probably the easiest solution is the most robust. IE6 really isn't that hard to wrangle if you know what you are doing. But learning to write a few lines more code is certainly harder than giving up. – Eric Meyer Aug 28 at 18:57
1  
It all depends on your goals. I guess I tend to write from the business perspective. I used to try to write perfectly CSS-based websites, and then I realized how much time I was wasting to get the same exact behavior of a 3-column table. Unless there's a good business reason for avoiding table, now I just use it and forgive myself. – Joel Wietelmann Aug 28 at 19:02
vote up 1 vote down

Just set an explicit width for your elements. This should make them immune to any resizing.

div.clear  { clear:both; }
#container { width:640px; }
  #nav     { float:left; width:200px; }
  #content { float:left: width:440px; } 

<div id="container">
  <div id="nav">
    <p>Hello World</p>
  </div>
  <div id="content">
    <p>Hello World</p>
  </div>
  <div class="clear"></div>
</div>
link|flag
I'm not having re-sizing issues, it's the layout that is adjusting itself where divs are moving around. – wahle509 Aug 28 at 18:59
vote up 2 vote down

You can use min-width and get it to work in IE6 using ie7.js

link|flag
vote up 4 vote down

Why reinvent the wheel? There are a bunch of sites out there that offer free templates for exactly what you are trying to achieve. Check some of these out:

Hopefully these help you out!

link|flag
vote up 4 vote down

You can specify the width for the column div's container.

link|flag
vote up 2 vote down

You can use the min-width CSS command to specify the minimum width of your page. See this page for an example.

link|flag
3  
However; IE6 is dumb. – Koning Baard XIV Aug 28 at 18:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.