我希望徽標div位於導航容器的頂部。我將如何實現這一目標?我一直在玩弄定位,似乎沒有任何工作。它們都在標題容器內。重疊導航上的重疊div
這裏是我的CSS代碼:
和JS鏈接:
header {
position: relative;
height:100px;
background-color: yellow;
}
.logo {
position: absolute;
margin-top:10px;
margin-left:20px;
width:80px;
height:80px;
background-color: red;
}
nav {
position: absolute;
width:100%;
bottom: 0;
background-color: bisque;
}
和HTML
<header>
<div id="logo">Logo</div>
<nav>
<ul>
<li><a href="#">| Hours |</a></li>
<li><a href="#"> Facilities |</a></li>
<li><a href="#"> Restaurant Charlotte |</a></li>
<li><a href="#"> Penthouse Suite |</a></li>
<li><a href="#"> Gift Shop |</a></li>
</ul>
</nav>
</header>
你的html在哪裏?你能設置一個jsfiddle嗎? – Horen
請用'HTML'更新問題。 – Rohit416