1. 程式人生 > >隱藏滾動條並且不影響滾動的方法

隱藏滾動條並且不影響滾動的方法

//設定橫向滾動
.cate2{
    white-space:nowrap;
    margin-left: 10px;
    height: 1.8em;
    line-height: 1.8em;
    padding: 5px 0 8px 0;
    position:relative;
    display:box;
    overflow-x:scroll;
}
//設定容器的滾動條寬高都為0就隱藏了
.cate2::-webkit-scrollbar {
    width: 0;
    height: 0; !important }