Mam kilka pojemników, a ich dzieci są tylko bezwzględne / względnie ustawione. Jak ustawić wysokość pojemników, aby ich dzieci były w nich?
Oto kod:
HTML
<section id="foo">
<header>Foo</header>
<article>
<div class="one"></div>
<div class="two"></div>
</article>
</section>
<div style="clear:both">Clear won't do.</div>
<!-- I want to have a gap between sections here -->
<section id="bar">
<header>bar</header>
<article>
<div class="one"></div><div></div>
<div class="two"></div>
</article>
</section>
CSS
article {
position: relative;
}
.one {
position: absolute;
top: 10px;
left: 10px;
background: red;
width: 30px;
height: 30px;
}
.two {
position: absolute;
top: 10px;
right: 10px;
background: blue;
width: 30px;
height: 30px;
}
Oto jsfiddle. Chcę, aby tekst „słupka” był wyświetlany między 4 polami, a nie za nimi.
Jakieś łatwe poprawki?
Zauważ, że nie znam wzrostu tych dzieci i nie mogę ustawić wysokości: xxx dla kontenerów.