{
scrollbar-arrow-color: red;
scrollbar-face-color: #CBCBCB;
scrollbar-3dlight-color: blue;
scrollbar-highlight-color: #333;
scrollbar-shadow-color: yellow;
scrollbar-darkshadow-color: green;
scrollbar-track-color: #eee;
scrollbar-base-color: black;
Cursor:url(mouse.cur);
}
::-webkit-scrollbar {
width:10px;
margin-right:2px
}
::-webkit-scrollbar-button {
width:10px;
background-color: yellow;
}
::-webkit-scrollbar:horizontal {
height:10px;
margin-bottom:2px
}
::-webkit-scrollbar-track {
border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
background-color: #333333;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
width:10px;
border-radius: 5px;
background: #CBCBCB;
}
::-webkit-scrollbar-corner {
width: 10px;
background-color: red;
}
::-webkit-scrollbar-thumb:hover {
background: #909090;
}
.demo {
width: 400px;
height: 200px;
overflow: auto;
}