html,
body {
scrollbar-face-color:
scrollbar-highlight-color:
scrollbar-shadow-color:
scrollbar-3dlight-color:
scrollbar-arrow-color:
scrollbar-track-color:
scrollbar-darkshadow-color:
}
::-webkit-scrollbar-thumb {
background-color:
/*滚动条颜色*/
height: 50px;
outline-offset: -2px;
outline: 2px solid
-webkit-border-radius: 4px;
border: 2px solid
/*滚动条边框颜色*/
}
::-webkit-scrollbar-thumb:hover {
background-color:
height: 50px;
-webkit-border-radius: 4px;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track-piece {
background-color:
-webkit-border-radius: 0;
}
html {
/*隐藏滚动条,当IE下溢出,仍然可以滚动*/
-ms-overflow-style:none;
/*火狐下隐藏滚动条*/
overflow:-moz-scrollbars-none;
}