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.

Let's say I have a div to which I set height: 500px; in CSS, thus it's fixed in height.

The content of my page is generated automatically in JavaScript, thus sometimes it's bigger than 500px and it overflows the div border.

My question is: is it possible to have a fixed size (for example 500px) but when the div's content is greater than 500px, have the div growing bigger to contain that?

Thanks

share|improve this question

3 Answers

up vote 12 down vote accepted

Try

min-height: 500px;
height:auto;

to set a minimum height.

For reference: http://www.w3schools.com/cssref/pr_dim_min-height.asp

share|improve this answer
Thanks a lot, it worked perfectly! :) – Masiar Dec 12 '11 at 11:17

Yes

min-height:300px;
height:auto;
share|improve this answer
try this


min-height:500px;
overflow:auto;
margin:0 auto;
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.