css隐藏滚动条,依旧可以滚动

.scroll{

    overflow: scroll;
  /*隐藏滚动条,当IE下溢出,仍然可以滚动*/
  -ms-overflow-style: none;
  /*火狐下隐藏滚动条*/
  scrollbar-width: none;
}
/* 谷歌浏览器隐藏滚动条 */
.scroll::-webkit-scrollbar {
    display:none
}

 

posted on 2020-05-06 13:55  提小小莫  阅读(573)  评论(0)    收藏  举报

导航