移动端去掉横向滚动条样式
时间:2017-09-04 17:15:51
收藏:0
阅读:304
::-webkit-scrollbar{
width:0;
}
::-webkit-scrollbar-track {
background:rgba(0,0,0,0);
}
::-webkit-scrollbar-thumb {
background:rgba(0,0,0,0);
}
::-webkit-scrollbar-thumb:hover {
background:rgba(0,0,0,0);
}
::-webkit-scrollbar-thumb:window-inactive {
background:rgba(0,0,0,0);
}
原文:http://www.cnblogs.com/lucy6689/p/7474424.html
评论(0)