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.

Here is an example page:

http://jsfiddle.net/SkeLLLa/pwfH2/

I want to set 100% height for the content class (see the "Problem here" comment in the CSS source), but when I do this left and right columns (nested in the content div) become 0px height. But when content has height set in pixels it works fine.

Are there any solutions without JavaScript?

share|improve this question
From another "Matthew": alistapart.com/articles/holygrail – Markus Jarderot Apr 10 '12 at 9:26
Adding padding-bottom:9999px; margin-bottom:-9999px; to left and right columns helped. Thanks! – Alex Apr 10 '12 at 10:28
But those tricks cause scroll to appear. As for other examples - I need "center" element placed under "left" and "right" columns and center element shouldn't contain any margins to draw fancy rounded borders. – Alex Apr 10 '12 at 14:19

1 Answer

up vote 1 down vote accepted

Use display: inline-block for the columns and height:100% for the html and body tags:

<!doctype html>
<html>
  <head>
  <style>
  html, body, #content, #left, #right, #center { height: 100%; }
  #content { width: 100%; }
  #left, #center, #right { display:inline-block; }
  #left, #center, #right { width: 33%; border: 1px solid red; }

  /* media query for IE 6-7 */
  @media, 
    { 
    #left, #center, #right { display:inline; }
    }
  </style>
  </head>
  <body>
    <div id="content">
        <div id="left">foo</div>
        <div id="center">bar</div>
        <div id="right">baz</div>
    </div>
  </body>
</html>
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.