1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| ._scrollbar::-webkit-scrollbar-track-piece { background: #F0F0F0; } ._scrollbar::-webkit-scrollbar { width: 10px; height: 10px; } ._scrollbar::-webkit-scrollbar-thumb { background: #81C8FF; background-clip:padding-box; min-height:28px; border-radius: 5px; } ._scrollbar::-webkit-scrollbar-thumb:hover { background-color:#bbb; cursor: pointer; }
|