html {
height: 100%;
// IE浏览器隐藏滚动条
-ms-overflow-style: none;
// Firefox浏览器隐藏
overflow: -moz-hidden-unscrollable;
}
// chorme 浏览器 隐藏滚动条
html::-webkit-scrollbar {
display: none;
}
.side-evaluate-box::-webkit-scrollbar {
display: none;
}
.side-evaluate-box {
overflow: -moz-scrollbars-none;
-ms-overflow-style: none;
/* IE 10+ */
overflow-x: auto;
overflow-y: auto;
}
side-evaluate-box是需要隐藏掉滚动条元素的class