2012-12-19 110 views
1

我已經有了一定的高度的清單,並且需要讓它滾動才能垂直顯示其餘部分。
於是我將overflow-y: hidden;添加到列表中。
但子菜單不可見,並顯示一個水平滾動條。溢出-y隱藏子菜單

有沒有解決方法? code here

+1

你UL已經寬度設定的寬度。只要你刪除它,你就可以訪問子菜單。否則,它必須在JavaScript中做一個單獨的菜單子 – Ladineko

+0

我需要寬度,這個UL本身是一個長下拉,而UL裏面是它的子菜單 – GSSxGSS

回答

0

只需增加.wrapper

.wrapper { 
    margin: 20px; 
    background: gray; 
    color: white; 
    width: 400px; 
    height: 100px; 
    /* I need overflow-y auto,but I also need to display the submenu*/ 
    overflow-y: auto; 
    overflow-x: visible; 
}