4

誰かが助けることができれば私は小さな問題があります。私はおそらく本当に愚かですが、現在後ろに座っているので、DIVを固定ヘッダーの下に置くことができないようです。

</body>
    <div id="container">
        <div id="header">
        </div>
        <div class="home">
            <img src="images/home.jpg" alt="" height="563" width="760">
        </div>
    </div>
</body>

body {
    text-align: center;
}

#container {
    width: 760px;
    margin-left: auto;
    margin-right: auto;
}

#header {
    padding-top: 250px;
    position: fixed;
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-position: 50% 40%;
}

.home {
}

編集:ヘッダーには基本的なCSSメニューがあり、この問題にコードが必要だとは思わなかったということもありません。

4

1 に答える 1

6

絶対/固定を配置すると、ドキュメントのフローからdivが削除されます。をヘッダーの下に配置するには、ヘッダーの高さに等しくする.home必要がありますmargin-top

于 2012-09-26T14:08:58.690 に答える