html と body を width: 100% position: absolute
に設定し、header、footer width: 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>