我有引導程序模板,使用this guide做出了非響應,一切正常。但是,當窗口大小較小時,頂部導航欄不會水平滾動。使頂部導航欄在無響應的引導程序模板中水平滾動
問題的例子也是that page。如果我們擠壓窗口大小比右上角的「鏈接」按鈕不可訪問。但指南本身說:
"Any fixed component, such as a fixed navbar, will not be scrollable when the viewport becomes narrower than the page content."
"There is no way around this as it's default browser behavior. The only solution is a responsive layout or using a non-fixed element."
響應功能並不是必需的,因爲許多建議的解決方案使頂部navbar行爲作爲響應。只是想問社區是否有任何一種解決方案,使頂部導航欄水平滾動頁面內容的其餘部分。
以下是目前的HTML結構
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">.....</div>
<div class="navbar-collapse collapse pull-right">.....</div>
</div>
</div>
就像例如:「唯一的解決方案是響應式佈局或使用非固定元素。」 – Christina 2014-12-04 15:59:27
對,因爲沒有其他好的方法可以做到這一點,所以我必須選擇非固定寬度。因爲這是瀏覽器的默認行爲。 – hashmi 2014-12-05 10:59:39