我需要将侧面的高度与身体的高度相匹配,而不考虑内容的多少。因为它给了我无花果。2 我需要图 1。
我还需要让页脚适合身体高度。
position:absolute
确实适合,但会覆盖margin:auto
居中的 body 元素。我如何对齐 div 元素
Html 代码:<html> <body>
<header></header>
<aside></aside>
<footer></footer>
</body> </html>
我的CSS代码是这样的:
body{ width:920px;
position:absolute;
height:auto; }
aside { float:left;
width:170px; }
footer { float: right;
background: #E7DBD3;
clear:both; }