vote up 1 vote down star
1

is there a way to auto adjust container DIV height to accomodate absolutely positioned child DIVs? i'd like to get something like

+-----------------------+
| container             |
|  +------+   +------+  |
|  | chld |   | chld |  |
|  |   1  |   |   2  |  |
|  |      |   |      |  |
|  +------+   +------+  |
|       +------+        |
|       | chld |        |
|       |   3  |        |
|       |      |        |
|       +------+        |
+-----------------------+

i try something like:

<div class="container" style="position: relative; border: solid thin">
    <div class="chld" style="width: 20px; 
                             height: 20px; 
                             position: absolute; left: 5px; top: 5px;
                             border: dashed thin;"><div>
    <div class="chld" style="width: 20px; 
                             height: 20px; 
                             position: absolute; left: 30px; top: 5px;
                             border: dashed thin;"><div>
    <div class="chld" style="width: 20px; 
                             height: 20px; 
                             position: absolute; left: 15px; top: 30px;
                             border: dashed thin;"></div>
</div>

but the "container" div stays zero height. I understand, that this might be the expected behaviour, as elements are 'taken out' of the flow when positioned absolutely, but is there a workaround for this? (except for precalculating the resulting height and setting it manually)

flag

6 Answers

vote up 0 vote down check

If you use position:relative instead of position absolute an empty space will stay in the page structure where the element should be, and this space will be the height of the element you've moved.

So you could float chld1 and chld2 to get them side by side, add top & bottom padding to push chld 3 down and use position relative to split them apart and move to any height. Then use position relative on chld3.

Something like

#exp_outer{width:400px;border:1px solid black;}
#chld1{float:left; margin: 30px 0 20px;left:50px}
#chld2{float:right; margin: 30px 0 20px;right:50px;}
#chld3{left:150px;clear:both;}
.box{position:relative;width:80px;height:80px;border:1px solid black;}

<div id="exp_outer">
  <div id="chld1" class="box">Child1</div>
  <div id="chld2" class="box">Child2</div>
  <div id="chld3" class="box">Child3</div>
</div>

*edit To convince myself it really works, here's a demo: http://wheresrhys.co.uk/resources/test.html

link|flag
when i set child elements as floating, the border of the container collapses (it doesn't surround the children, the container DIV considers himself empty...) 'position: relative' by itself isn't very useful, as those inner divs will stack vertically, not horizontally :((( – chhh Apr 8 at 23:32
But if chld3 has clear:both it forces the outer div to expand – wheresrhys Apr 9 at 0:00
oh, my problem was, that i've set all 3 children to 'float: left', this way 'clear: both' on child3 didn't help. Your example works fine! But i actually meant a more general case of being able to arbitrary place those child elements inside a container. I definitely need to read more on clearfix... – chhh Apr 9 at 7:55
vote up 1 vote down

overflow:auto

This is the new clearfix method, FYI. However, it doesn't always expand the container to the height of its tallest & absolutely positioned child.

link|flag
vote up 1 vote down

i ended up using clearfix, this allows me to set the desired width of the container, and it's height will be adjusted automatically, depending on the contents (this works in all browsers)

<style>
		.inner_box {
			position: relative;
			float: left;
			width: 50px; 
			height: 50px; 
			border: dashed thin;
			margin: 5px 5px 5px;
			text-align: center;
		}

		.outer_box {
			position: relative; 
			top: 200px;
			border: solid thin; 
			width: 190px;
			//height: 1%;
		}

		.outer_box:after {
			content: '.'; 
			display: block; 
			clear: both; 
			visibility: hidden; 
			height: 0; 
			line-height: 0;
		}
	</style>

<div class="outer_box">
    <div class="inner_box">1</div>
    <div class="inner_box">2</div>
    <div class="inner_box">3</div>
    <div class="inner_box">4</div>
    <div class="inner_box">5</div>
    <div class="inner_box">6</div>
</div>
link|flag
vote up 1 vote down

No. The whole idea is that absolutely positioned element does not influence its parent layout.

Try achieving your goal by relatively positioning floats instead of absolute positioning of divs. It is not as convenient (because of starting position of your floats is not ass 0,0) but it will work.

link|flag
vote up -1 vote down

If you give the .container div a height of 100% it should calculate it from the child elements in most browsers but unfortunately not IE6 or lower.

link|flag
definitely not in case of absolutely positioned inner elements – chhh Apr 8 at 23:10
vote up 0 vote down

You could give the .container div a bottom padding that totals the absolutely positioned childrens' heights. I'm not sure if that counts as precalculating the height, but at least you wouldn't have to include any content within .container itself.

link|flag
of course that counts as precalculating the height, because you have to know the height beforehand! – chhh Apr 8 at 23:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.