隐藏浏览器滚动条

487 阅读1分钟

谷歌浏览器

::-webkit-scrollbar { width: 0 !important }//谷歌

火狐浏览器

scrollbar-width: none;//火狐隐藏

ie浏览器

-ms-overflow-style: none; //IE

element table表格滚动条

/deep/ .el-table__body-wrapper{
 &::-webkit-scrollbar {
    width: 0 !important;
      }
}