1

答えを求めて 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>

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 に答える