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 回答