私は div ( #child
) を持っていますが、これは親 ( #parent
) の高さいっぱいまで拡張されません。html
との両方の高さを設定しましたbody
。親の高さを 100% に設定しても機能しますが、親の高さを最小にし、子を親の高さいっぱいまで拡大する必要があります。
HTML:
<html>
<body>
<div id="parent">
<div id="child">
<p>This area should be have the same height as it's parent.</p>
</div>
</div>
</body>
</html>
CSS:
html, body, header, h1, p { margin: 0; padding: 0; }
html { background-color: #DDD; height: 100%; }
body { background-color: #DAA; height: 100%; }
#parent {
min-height: 70%;
height: auto !important;
height: 70%;
background-color: #AAD;
}
#child {
height: 100%; /* why isn't this working ? */
width: 80%;
margin: auto;
background-color: #ADA;
}
JSFiddle: http://jsfiddle.net/nxVNX/11/