Mobile Number Tracker
Trace Mobile Number Earn Money Online
© TechWelkin.com

CSS: Div Doesn’t Fully Expand in Height

Samyak Lalit | March 10, 2012 (Last update: February 7, 2015)

Samyak Lalit is an Indian author and disability rights activist. He is the principal author and founder of projects like TechWelkin, WeCapable, Viklangta, Kavita Kosh among many others.

I have written several small posts about commonly encountered problems while using DIV element. For example, arranging two or more DIVs side-by-side and vertically middle aligning text. Today, I will tell you about yet another problem that many web programmers face.

The Problem

Let’s understand the problem with an example.

Create a DIV and let’s call it “wrapper-div”. Now create a DIV inside wrapper. Let’s call this second DIV as “inner-div”.

Now when you’ll add content to inner-div and its height will increase due to increasing content –the wrapper-div will not automatically expand to keep on wrapping the inner-div.

Are you facing a similar problem?

Many new programmers to CSS world feel baffled with this problem. Some of them, with hit and trial, figure out that if you float the wrapper DIV either to right or to left –it expands to the cover the inside DIV. But if you want your wrapper DIV to remain center aligned –the life becomes tough.

The Solution

Solution is simple! Instead of float property you should use overflow:hidden in the style of wrapper DIV. For example:

<div id="wrapper-div" style="width:950px; overflow:hidden">
<div id="inner-div">
content comes here
content comes here
content comes here
content comes here
content comes here
</div>
</div>

With this styling, you will not be forced to float your DIV element to left of to right, and at the same time the wrapper div will automatically fully expand in height to cover the bloating inner content.

I hope this little piece of advice would be useful and save you some time in your busy work schedule. Do let me know if you face any problem while implementing the above solution. Thank you very much for using TechWelkin.

© TechWelkin.com

One response to “CSS: Div Doesn’t Fully Expand in Height”

  1. Dan Unawatuna says:

    You are a champion. Thank you so much.

Leave a Reply

Your email address will not be published. Required fields are marked *