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 have a div with the following css properties

#maindiv {
   padding: 0px 30px 15px 30px;
   background-color: #fff;
   border-radius: 4px 0 0 0;
   border: solid 2px #ccc;
   min-height: 500px;
   height: auto;
   width: 100%; 
}

I have a webgrid in this view. Unfortunately, the #maindiv does not expand to accomodate its content (the webgrid). How can I adjust the properties of he div to always expand to cover all its content?

EDIT:
I have two inner divs the structures is

<div id="maindiv">
   <div class="container">
      <div id="inner1">
        <!-- my webgrid is contained here -->
      </div>
   <div id="inner2>
</div>

and the other css are as follows:

.container{
   height: 100%;
   width: 100%;
}

#inner1 {
   height: 100%;
   width: 700px;
   float: left;
   border: 2px solid #000;
}

#inner2 {
   height: 100%;
   width: 200px;
   float: right;
   margin-right: 90px;
}
share|improve this question
what the css applied to the webgrid? Are there any other containers to the #maindiv that might be restricting its height. – Aditya Saxena Jan 2 at 14:59
What is the height and width of webgrid ? – Sahal Jan 2 at 15:00
its working jsfiddle.net/vVb2h whats problem ? – NullPoiиteя Jan 2 at 15:01
1  
You have to clear after #inner2 or add a clearfix to .container. – Alexander Christiansson Jan 2 at 15:22
@AlexanderChristiansson. That worked! Thanks. I can accept you answer if you post it – jpo Jan 2 at 15:41

1 Answer

up vote 0 down vote accepted

You are not clearing after the floats. Floated elements are seen by the browser as having zero height, why their parent isn't expanding to fit them.

To solve the problem, add an empty div with clear: both; after #inner2 or add a clearfix to .container. The latter has the advantage of not cluttering your html with non-semantic tags and can be implemented like this.

.clearfix:after
{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    line-height: 0;  
}
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.