答えを求めて StackOverflow を精査しましたが、試したことはありません。
高さの異なる 3 つの内部 div が垂直に積み重ねられたコンテナー div があります。ブラウザ ウィンドウを最大化すると、問題なく表示されます。ウィンドウを小さくして横方向に右にスクロールすると、空白のセクションがあります。どうすればそれを取り除くことができますか? よろしくお願いします!
body {
min-width: 100%;
}
div#outer {
display: block;
position: absolute;
min-width: 100%;
}
div#top {
left: 0;
top: 0;
height: 100px;
width: 100%;
position: relative;
display: block;
}
div#middle {
left: 0;
top: 0;
height: 600px;
width: 100%;
position: relative;
display: block;
}
div#bottom {
left: 0;
top: 0;
height: auto;
width: 100%;
position: relative;
display: block;
}
HTML:
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="big">
<div id="top">
</div>
<div id="middle">
</div>
<div id="bottom">
</div>
</div>
</body>