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.

I am trying to make a fluid layout that has no fixed height or width elements. The body of my page is divided into three columns (and since I want them all to be equal heights, I've decided to use css tables). However, when I try and add a 100% height property to the table div (or the table-cell divs) they don't expand to the full size of div.middle. I have made a JS fiddle for this question with the full code http://jsfiddle.net/3NMw5/, but here is a snippet:

<body>
    <div class='titleBar'>
        <div class='wrap'>
            <img src='../images/logo.png' />
        </div>
    </div>
    <div class='middle'>
        <div class='wrap mainContent'>
                <div class='leftColumn'>left here</div>
                <div class='center'>center</div>
                <div class='rightColumn'>right</div>
        </div>
    </div>
    <div class='footerBar'><div class='wrap'>footer</div></div>
</body>

and the css:

div.mainContent { display: table; height: 100%;}
div.leftColumn { width: 20%; display: table-cell; background-color: #D2B48C; margin: 0; padding: 0;}
div.rightColumn {width: 20%; display: table-cell;}
div.center {width: 60%; display: table-cell;}
share|improve this question

3 Answers

up vote 1 down vote accepted

Try adding height: 200px; to mainContent.

div.mainContent {
display: table;
height: 200px;
}

Here is the jsFiddle for the code.

Adding height: 100%; should also work.

Your problem was not that the columns were not stretching to full height, but rather that mainContent was not fully stretching.

--

EDIT: Okay, so the real problem comes when you try and make your container that fluid, because height is harder for a browser to calculate than width.

The problem occurs when you set a percentage height on an element who's parent elements don't have heights set. In other words, the parent elements have a default height: auto;. You are, in effect, asking the browser to calculate a height from an undefined value. Since that would equal a null-value, the result is that the browser does nothing.

In order to define the height of the div to a relative height, you must set the height of the parent elements as well.

By adding height: 100% to .middle, you get something close to what you are after. See the jsFiddle here.

Read more about the height issue here.

share|improve this answer
Unfortunately, height: 100% doesn't work (it collapses to the height of text) and I don't want to use a fixed height (px's) because I want the design to dynamically size itself based on the screen size. – Mike Dec 17 '12 at 6:02
   
Yes, it does work? jsfiddle.net/3NMw5/9 - add height 100% to mainContent. – hellohellosharp Dec 17 '12 at 6:27
Yours worked because you had static height properties on the divs. Check out this fiddle, it is what I am trying to accomplish, only I want to replace min-height: 300px with a fluid height property. jsfiddle.net/3NMw5/10 – Mike Dec 17 '12 at 6:43
I'm not seeing the min-height: 300px you are talking about in that fiddle. – hellohellosharp Dec 17 '12 at 6:46
1  
I am somewhat out of options than :) You could make them all position absolute and use javascript/jQuery to set the height/position of the footer :) – hellohellosharp Dec 17 '12 at 7:22
show 5 more comments

means U want Same height for all three Div (top, mid and Footer) please Check

jsfiddle.net/3NMw5/1/

share|improve this answer
No, I am trying to get left, center, and right to all be 100% of div.middle – Mike Dec 17 '12 at 5:55
ok check this jsfiddle.net/3NMw5/8 – Pawan Dec 17 '12 at 6:03
That is still not what I am looking for. I need the height property to be fluid (i.e. % or em) because it needs to expand and contract with the size of the user's screen. Additionally, what you did there broke the div.middle styling (I only want the 3 columns to be 100% the height of div.middle) – Mike Dec 17 '12 at 6:08
please draw your design in paint whatever you want and post here. – Pawan Dec 17 '12 at 6:27
1  
if you will set the "Height : Auto;" for body and leftcolumn. the div automatically expand and contract with the size of the user's screen. – Pawan Dec 17 '12 at 6:57
show 1 more comment

you need to use combination of relative and absolute positioning. you can take a look on following code

http://jsfiddle.net/3NMw5/15/

share|improve this answer

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.