CSS绝对位置元素在溢出滚动时相对隐藏

时间:2019-04-24 10:14:18

标签: css css3

我在下面的链接中附加了代码。在绝对位置元素隐藏时,相对元素溢出滚动code

#menu ul { 
    margin: 0; 
    padding: 0; 
    position: relative;
    list-style: none;
    width: 150px; /* Width of Menu Items */ 
    border-bottom: 1px solid #ccc; 
    max-height:100px;
    overflow-y:auto
} 

1 个答案:

答案 0 :(得分:0)

使用100%固定无序列表的高度;

#menu li ul {
    position: absolute;
    left: 149px;
    top: 0;
    display: block;
    height: 100%;
}