1

我已经搜索了 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>

4

2 回答 2

0

在 中body,有一些默认边距。您可以像这样删除所有内容:

body {
    min-width: 100%;
    margin: 0;
    padding: 0;
}

如果您只想删除两侧的边距:

body {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

那样有用吗?

于 2013-01-10T00:11:29.363 回答
0
html,body {
         margin: 0px;
         padding: 0px;
         overflow-x: hidden;
}
于 2020-07-31T10:05:47.657 回答