我對此示例非常感興趣:http://www.bootply.com/qq78PQIf44但我需要修復兩個邊欄,並且當瀏覽器大小與iPad(縱向/橫向)兼容時,我想隱藏左邊邊欄。Bootstrap Off-canvas Sidebar Left and Right Fixed
-1
A
回答
0
添加一個hider類到你的側邊欄。
<div id="sidebar" class="hidden-xs">
...sidebar...
</div>
0
使用hidden-md
和hidden-sm
匹配display: none
屬性與iPad的寬度
<div class="col-xs-6 col-sm-2 sidebar-offcanvas hidden-md hidden-sm" id="sidebarLeft" role="navigation">
+0
謝謝,這是我需要的 –
+0
很高興它幫助!乾杯:) –
相關問題
- 1. Bootstrap Right Sidebar with Affix&Offcanvas
- 2. Bootstrap navbar fixed right
- 3. aligning elements left and right
- 4. image to the right right and bottomm left
- 5. css margin left and right問題
- 6. iOS-Charts space left and right
- 7. Bootstrap with navbar fixed top and Bootstro
- 8. iFrame,Canvas,Fixed Width,Content ist center and not right right
- 9. Ionic 2&ion-item with left and right text
- 10. css align bullet right and keep text left aligned
- 11. Floating two flex items left and right right in one row
- 12. CSS/Responsive/Mobile:Content之後的Left/Right Sidebar,雖然首先在HTML中?
- 13. Html position fixed bugs screen to right
- 14. Bootstrap Sidebar
- 15. 通過點擊關閉Bootstrap offcanvas邊欄
- 16. Fixed - AJAX and datalists
- 17. Silverstripe Bootstrap Accordion Sidebar
- 18. Float right fixed svg in div
- 19. Datatable Fixed Column(Right Only)問題
- 20. 兩側(左側和右側)的bootstrap offcanvas示例
- 21. Bootstrap Offcanvas - 做offcanvas css類真的存在嗎?
- 22. CSS:position = fixed and height = auto
- 23. SwiftSpriteKit touchesBegan detect right/left
- 24. Hiveql - RIGHT()LEFT()函數
- 25. Left/Right position a div
- 26. 「margin-left」和「left」(或「margin-right」,和「right」)之間的區別
- 27. Datatable fixed left column(等級)
- 28. 正則表達式「AND OR」表示[left | right] || [top |底部]
- 29. Bootstrap,Sidebar沒有響應
- 30. Bootstrap 4:col align right
問題尋求碼的幫助(比如 「爲什麼不在此代碼的工作?」)必須包括期望的行爲,特定的問題或錯誤以及在問題本身**中重現**所需的最短代碼。請參閱[**如何創建最小,完整和可驗證的示例**](http://stackoverflow.com/help/mcve) –
好的@Pogrindis謝謝 –