移动设备不允许滚动



这是我的第一个网站,我无法通过android手机在页面上滚动任何位置。我可能错过了一些简单的东西!这是我的css中的一部分:

  html,body {
        min-width: 320px;
}
body, input, select, textarea {
        font-size: 11pt;  
        padding: 3px;
        color: #000;
        margin: 0;
        }   
#bg {
        background-size: contain;
        width: 1500px;
    }
 div {
      width: 150px;
      height: 150px;
      overflow: scroll;
} 
div::-webkit-scrollbar {
    width:15px !important;
} 
div::-webkit-scrollbar-track {
    -webkit-border-radius:5px !important;
    border-radius:5px !important ;
    background:rgba(0,0,0,0.1) !important;
} 
div::-webkit-scrollbar-thumb {
    -webkit-border-radius:5px !important;
    border-radius:5px !important;
    background:rgba(0,0,0,0.3) !important;
} 
div::-webkit-scrollbar-thumb:hover {
    background:rgba(0,0,0,0.3);
} 
div::-webkit-scrollbar-thumb:window-inactive {
    background:rgba(0,0,0,0.3);
}

overflow样式的属性添加到body标记中。

html,body {
      min-width: 320px;
      overflow-y: scroll;}

相关内容

  • 没有找到相关文章

最新更新