2015-06-15 77 views
0

這裏是我的右移動菜單CSS:修正了定位手機菜單中沒有垂直滾動

.mobile_header_menu { 
    position: fixed; 
    height: 100%; 
    width: 280px; 
    background: #fff; 
    right: -280px; 
    top: 0; 
    z-index: 999999; 
} 

當點擊漢堡包圖標,一些JS改變了正確的價值爲0,這使得從屏幕外部的(右邊的菜單側)。

問題:如果菜單比屏幕高,就不能滾動。通過使用固定而不是絕對,我可以滾動,但現在菜單始終可以在右側用水平滾動條顯示。

如何使菜單滾動而不總是可見?

回答

2

Add overflow: auto to .mobile_header_menu