我已经搜索了 StackOverflow 的答案,但我尝试过的任何方法都没有奏效。
我有一个容器 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>