我将 html 和正文设置为宽度:100% 位置:绝对
和页眉,页脚宽度:100%。
所以当我调整窗口大小时,页眉页脚也会调整大小。如何使它们具有固定宽度,即窗口的最大宽度???特别是在调整大小后,页眉页脚不会一直向右延伸
非常感谢你的帮助
<pre>
html, body {
height: 100%;
width: 100%;
}
body {
position: absolute;
font-family: Helvetica, Garamond, serif;
margin: 0 0 0 0;
}
#footer {
position: relative;
margin-top: -150px;
}
#header, #footer {
margin: 0 0 0 0;
width: 100%;
}
#header {
height: 100px;
}
</pre>