親 div に clid div を配置しようとしていますが、親 div の高さは動的である必要があるため、子 div が内部に配置された後に拡大または縮小する必要があります。どうすればそれを達成できますか?子は常に親の中にとどまるべきです。
私はまったくデザイナーではないので、 「 10 のステップで CSS の配置を学ぶ」を読んで少し学びました。
そして、この質問「絶対配置されたdivを親divの高さで拡張する」。
ありがとう
CSS
#header
{
margin: 0 auto;
border: 1px solid #000000;
width: 500px;
background: #aa0000;
}
#body
{
margin: 0 auto;
border: 1px solid #000000;
width: 500px;
background: #ff0000;
}
#footer
{
margin: 0 auto;
border: 1px solid #000000;
width: 500px;
background: #dd0000;
}
#section_one
{
position: relative;
width: 100px;
height: 100px;
background: #EEEEEE;
top: 10px;
left: 10px;
}
#section_two
{
position: relative;
width: 100px;
height: 100px;
background: #EEEEEE;
top: 10px;
left: 150px;
}
HTML
<div id="header">HEARDER</div>
<div id="body">
<div id="section_one">SECTION ONE</div>
<div id="section_two">SECTION TWO</div>
</div>
<div id="footer">FOOTER</div>