vote up 1 vote down star
2

I am experementing for the first time with css layouts (have experience of the very basic css setup). All I want to achieve is a 2 column layout (left panel and content). I have found this:

#leftcontent {
	position: absolute;
	left:10px;
	top:10px;
	width:170px;
	border:1px solid #C0C0C0;
	padding: 2px;
}

#centercontent 
{
    position: absolute;
    margin-left: 181px;
    border:1px solid #C0C0C0;
    top:10px;
    //fix IE5 bug
    voice-family: "\"}\"";
    voice-family: inherit;
    margin-left: 181px;
}

This displays great in firefox but the content in IE8 goes off the right of the screen, I assume by the length of the leftcontent. How can I fix this?

I appreciate this is probably quite a simple fix but I have experimented and looked for fixes but this supposedly should work.

flag

Do you have a doctype set? (and as a side note, note that IE8B2 still has major rendering glitches. – scunliffe Nov 4 '08 at 2:40

6 Answers

vote up 4 vote down check

I'd advise floating the #leftcontent element to the left, and then setting the margin of the #centercontent element to compensate:

#leftcontent {
        float: left;
        width:170px;
        border:1px solid #C0C0C0;
        padding: 2px;
}

#centercontent {
        margin-left: 181px;
        border:1px solid #C0C0C0;
}
link|flag
this seems to cause the same effect in ie8 it will give a horizontal scrollbar – petebob796 Nov 3 '08 at 23:53
vote up -8 vote down

Use a table. It is more suited to the task, way easier to implement and far more reliable across different browsers.

link|flag
I'm really against this. Tables are for tabulated data. That was their intended purpose and it's waht they're suited for. If it's a design thing, use CSS - if possible, don't alter the HTML at all. – Samir Talwar Nov 3 '08 at 23:47
Tables are made up of one or more rows of columnized data last time I looked. If you have multiple columns, then you have a table. Why force DIVs to act like a table when tables are natively supported? – David Arno Nov 3 '08 at 23:51
But then what do you do when you want to change them into two rows instead of two columns? With floated divs you can change the layout of the page by just editing the CSS, and you won't have to change the HTML. HTML is for content, CSS is for layout. – jeremy Ruten Nov 3 '08 at 23:54
@Jeremy, nice strawman. What for example do you do when you want to change from two columns to three? Yep, you edit the HTML, for the DIVs exist in the HTML. "HTML for content; CSS for layout" is idealistic and impossible to fully achieve. – David Arno Nov 4 '08 at 0:03
Actually it's not that hard to achieve and has worked quite nicely for me. Take a look at the source code of my site. The HTML is all <div>s and <span>s and <li>s with content inside, and the CSS contains all the layout. – jeremy Ruten Nov 4 '08 at 0:12
show 10 more comments
vote up 1 vote down

Set a width on #centercontent. Whether that be a percentage or a px size that will be what you're looking for.

link|flag
vote up 1 vote down

Use the float property to do this. An excellent float tutorial is Floatutorial. Here is how your CSS would look using floats:

#leftcontent {
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    width: 170px;
    border: 1px solid #C0C0C0;
    padding: 2px;
}

#centercontent {
    float: left;
    margin-left: 10px;
    border: 1px solid #C0C0C0;
    margin-top: 10px;
}

Then if you want a div to appear below those divs, you'll have to use this CSS:

#contentbelow {
    clear: both;
}

Also, you should set a width for #centercontent, as floated elements always need an explicit width.

link|flag
vote up 0 vote down

What others have said regarding float should help. Additionally, there are two things to check:

  • Have you tried setting the overflow for the left content, so the browser has a better idea of what to do when something doesn't fit in the space you allowed.
  • Have you looked for what element is causing the left side to overflow? Some elements just can't be wrapped, and if they are too wide they will force the width of the entire div to stretch to accommodate them.
link|flag
vote up 0 vote down

My favourite method of doing column layouts is using float:left and right.

colwrapper is set to 40em width, the margin-...:auto make the div centred (in everything but IE4 or IE5, for some reason)

footer appears after both the columns because of the clear:both.

This will scale nicely when you increase the font-size (ctrl and + or -), and you can easily nest columns inside columns (to do a 3 column layout, you do the same thing, but put two divs inside #colleft, and float left/right them)

#colwrapper{
    width:40em;
    margin-left:auto;
    margin-right:auto;
}
#colleft{
    float:left;
    width:10em;
}
#colright{
    float:right;
    width:30em
}
#footer{
    clear:both
}

And the HTML:

<div id="colwrapper">
    <div id="colleft">
        left column!
    </div>
    <div id="colright">
        right column!
    </div>
    <div id="footer">
        footer!
    </div>
</div>
link|flag

Your Answer

Get an OpenID
or

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