Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It's a type of layout that has fixed lengths at the edges, but the main content container is fluid.

I made a jsfiddle here http://jsfiddle.net/JyXtR/3/ I just can't get it and I don't understand why.

What I want to get is this http://i.imgur.com/VPzWE.png

The main content, and content on the right's containers should be the same height regardless of how much content is in them.

Am I really bad at this or is CSS not suited for these types of layouts where they take up an entire page at all times?

share|improve this question
Do you mean something like jsfiddle.net/22D4F/2? – Zeta Feb 12 '12 at 20:04
Something like that, but not exactly that. Ideally, main content and the sidebar should have their own scroll bars since content height can differ on both. I do like the way you bordered the sidebar. – DeaDEnD Feb 12 '12 at 21:52

4 Answers

up vote 1 down vote accepted

Demo. Use display:inline-block;, and adjust the width of both objects. I manually set the height of the main div to 300px for presentation purpose. Note that your inner objects have to use less than height:100%, since main won't scroll.

Maybe it's possible to set a height attribute to a display:table-cell element, but the given solution should work in your case.

Update: http://jsfiddle.net/22D4F/4/

share|improve this answer
Cool. Any way to make the height of main to be 100% minus the footer height? Or will I have to do that with Javascript? And why does the sidebar stick to the bottom of #main when #main is bigger? – DeaDEnD Feb 12 '12 at 22:13
I can't reproduce the second bug, but you can adjust the 100% minus footer height by using positioning. However, the current solution is quite a mess, maybe you'll find a better one (hint: put together what belongs together, use as little css as needed) ;). – Zeta Feb 12 '12 at 22:22
The updated solution works great. :) Thanks for all the help. This was really stressing me today. – DeaDEnD Feb 12 '12 at 22:27

If you want block elements (divs in your example) to display next to each other you need change their display css property or float the elements. You've done neither so that's why you can't achieve your desired layout. You're also mixing pixels and percentages which is trickier.

Here's a jsfiddle with the layout you want: http://jsfiddle.net/JyXtR/14/

share|improve this answer
On Chrome. The height of #main goes beyond the page height. Even resizing the frame the height of it keeps being a bit longer than the frame. – DeaDEnD Feb 12 '12 at 21:54

Check it now. But there is one problem, because it cannot be solved only with css. The problem is layout not work properly if sidebar is longer then content. It cannot be solved without javascript, so YOU MUST SET min-height of content div to sidebar content height. http://jsfiddle.net/DvaWk/

share|improve this answer

You need to 'float:left' your chat div and set the online users div to 200px;
EDIT: Also add overflow:auto to #main.

share|improve this answer
This doesn't seem to do it. Take note that both divs have position: absolute because they're not supposed to be scrolled. Only the content should be scrolled. – DeaDEnD Feb 12 '12 at 21:52
@DeaDEnD - Not in your jsfiddle it doesnt. Note my edit above. – Rob Feb 12 '12 at 22:15
you're right they have relative. Sorry I've been trying this with many types of positions I got confused. – DeaDEnD Feb 12 '12 at 22:18
@DeaDEnD Edited my post above. – Rob Feb 12 '12 at 22:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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