css去谷歌火狐IE滚动条

血红的双手。 提交于 2019-12-02 08:52:22
 .deals::-webkit-scrollbar,.pdfcontent::-webkit-scrollbar,.topPdf::-webkit-scrollbar {
      display: none; // 谷歌隐藏滚动条
      width:0px
  }
 .deals,.pdfcontent,.topPdf {
      overflow:-moz-scrollbars-none; // 火狐隐藏滚动条
      scrollbar-width: none;
  }


/*ie10以上隐藏pdf滚动条*/
.deals,.pdfcontent,.topPdf{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!