溢出滚动并去掉滚动条兼容火狐各浏览器

溢出滚动:

overflow:scroll;
去掉滚动条:
使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器

.cc::-webkit-scrollbar{
display: none;
}

兼容火狐

.cc {
scrollbar-width: none;
}

兼容IE10+

.cc {
-ms-overflow-style: none;
}

改变滚动条样式

.templateList-form::-webkit-scrollbar {width: 6px;height: 6px; background: transparent;}
.templateList-form::-webkit-scrollbar-thumb {background: transparent; border-radius: 4px;}
.templateList-form:hover::-webkit-scrollbar-thumb {background: hsla(0, 0%, 53%, 0.4);}
.templateList-form:hover::-webkit-scrollbar-track {background: hsla(0, 0%, 53%, 0.1); }

猜你喜欢

转载自blog.csdn.net/literarygirl/article/details/107211974
今日推荐