溢出滚动:
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); }