在移动设备中显示完整的侧边栏菜单

时间:2016-10-03 07:25:18

标签: html css twitter-bootstrap

我正在使用bootstrap,在全屏模式下正常情况但在移动模式下,如果页面内容较大,则会显示完整的侧边栏,但对于短页面内容,某些侧边栏内容会被隐藏,请参阅图像为了更好地理解Not full sidebar menu is shown

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

以下是我的代码https://jsfiddle.net/rrn4bvqm/

的一部分

0 个答案:

没有答案