菜单不会在手机上滚动

时间:2017-03-28 07:21:15

标签: css twitter-bootstrap

菜单无法在手机上滚动 - 我需要帮助http://www.ekizceliler.com/

我的样式表部分适用于手机上的菜单栏:

.menu_block {
    position: fixed;
    z-index: 9999;
    left:  0;
    top:   0;
    right: 0;
    height: 80px;
    width:  100%;
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

要在手机上滚动菜单,我必须做些什么?

1 个答案:

答案 0 :(得分:0)

将溢出自动和高度添加到媒体查询767px

内的菜单

@media(max-width:767px)

.navmenu {
position: absolute;
left: 0;
right: 0;
overflow-y: auto;
top: 80px;
height: 100vh;
background-color: #fff;

}