0
我的目標是:使導航欄穿過整個屏幕,呈灰色(#839496)。並讓每個鏈接/按鈕在其左側和右側有一個邊框。就像在導航欄:如何使導航遍佈整個頁面
http://www.theberrics.com/dailyops
然而,
我的問題是:鏈接/按鈕,只是要跨越儘可能爲去。我希望每個按鈕的寬度都是150px(這很好用)。但也有灰色橫條繼續通過整個屏幕水平(這不工作,只是什麼都沒有顯示)。
這裏是我的CSS:
nav {
background-color: #839496;
padding: 0.02px 0;
margin-bottom: 10px;
}
nav ul {
width: 100%; /*RIGHT HERE: i would like the whole unordered list to go across the screen. But it doesnt work*/
position: relative;
left:10%;
margin: 0;
padding-left: 100px;
}
nav li {
float: left;
}
nav li a{
display: block;
width: 150px;
background-color: #839496;
color: #fff;
text-align: center;
font-weight: bold;
text-transform: uppercase;
padding: 5px;
border-right: 1px solid;
border-left: 1px solid;
}
nav a:hover {
background-color: white;
color: #000;
text-decoration: underline;
}
這裏是我的html:
<nav>
<ul>
<li><a href="index.html">Home</a><li>
<li><a href="Top10.html">Top 10</a></li>
<li><a href="Skaters.html">Skaters</a></li>
<li><a href="Submit.html">Submit</a></li>
</ul>
</nav>
另外:我不希望每個按鈕是網頁的25%。寬度僅爲150px。
對不起,如果我的代碼或任何我說的是混亂。感謝您的閱讀!
哇..這完美的工作!太謝謝你了!不敢相信這是簡單的,哈哈。有關它如何工作的任何解釋?再次感謝 – BriannaXD 2014-10-08 07:46:23
查看鏈接http://www.quirksmode.org/css/clearing.html以獲得有關清除浮動值的清晰視圖。 – Aru 2014-10-08 07:51:36