0
A
回答
4
這是你將如何做一個 「bootstrappy」 的方式...
/* put the stuff you want NOT to span 100% in a container */
<div class="container">
/* wrap the grouping in a row */
<div class="row">
/* left center and right classes are unneeded.*/
/* Just used to show color in the fiddle */
<div class="span3 left">Header Left</div>
<div class="span6 center">Header Center</div>
<div class="span3 right">Header Right</div>
</div>
</div>
/* navbar outside the container will span 100% */
<div class="navbar">
<div class="container">
<div class="navbar-inner">
<div class="span12">
<a class="brand" href="#">Title</a>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
</div>
</div>
/* back into a container so it doesn't span the full width */
<div class="container">
<div class="row">
<div class="span12 content">Content</div>
</div>
</div>
編輯:已更新以反映容器內的導航鏈接的要求。
+0
工作過!但不在中心顯示導航欄標題和主頁/鏈接...。 –
+0
是的,只是將內容包裝在一個容器中(而不是整個導航欄,只是內容)。 – brbcoding
+0
沒有工作!我在http://codepen.io/anon/pen/wjvAB測試 –
1
你需要一個容器,保持頭部和內容。 例如:
<div class="container">
<div id="headerleft"></div>
<div id="header"></div>
<div id="headerright"></div>
</div>
<div id="nav"></div>
<div class="container">
<div id="content"></div>
</div>
而CSS將類似於此:
.container { width: 75%; }
#nav { width: 100%; }
相關問題
- 1. 全導航輔助導航欄內的父導航欄與引導
- 2. 全寬導航欄標識引導
- 3. Twitter的引導 - 全寬導航欄
- 4. 導航欄引導
- 5. 引導:如何使用導航欄?
- 6. 引導4 - 導航欄頭使用
- 7. 使用引導程序的導航欄
- 8. Twitter的引導導航欄導航
- 9. 全球導航欄
- 10. 導航欄在引導
- 11. 陣營引導導航欄
- 12. 引導導航欄倒塌
- 13. 引導導航欄間距
- 14. 引導與導航欄
- 15. 導航欄在引導
- 16. 修改引導導航欄
- 17. 引導:內部導航欄
- 18. 引導導航欄顯示
- 19. 引導導航欄在AngularJs
- 20. 引導側面導航欄
- 21. 引導:導航欄,COLAPSE DIV進入導航欄
- 22. 引導3 - 關閉導航欄和子導航欄
- 23. 導航欄上的導航欄下拉引導程序
- 24. 導航欄全實際使用
- 25. 創建橫幅帶導航欄?
- 26. CSS導航欄全尺寸
- 27. 確保導航欄全寬
- 28. 引導Twitter的活躍導航欄 - 改變使用引導Twitter的使用JQuery
- 29. 使用引導導航
- 30. 側欄導航改爲導航欄中的頂部導航欄
你的代碼看起來像什麼? – brbcoding
容器是什麼限制您的導航欄960px。 –
@brbcoding:http://jsfiddle.net/4w6PY/ –