chrome,firefox,safari,firefox,ie隐藏滚动条
时间:2019-08-05 13:00:27
收藏:0
阅读:77
.content {
//ie
/*隐藏滚动条,当IE下溢出,仍然可以滚动*/
-ms-overflow-style:none;
/*火狐下隐藏滚动条*/
scrollbar-width: none;
}
//chrome,opera,safari
.content::-webkit-scrollbar {
display:none
}
原文:https://www.cnblogs.com/tr93/p/11302223.html
评论(0)