1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#scrollbars{ width: 780px; height:400px; overflow:auto; overflow-x:hidden ; } ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment { display: none; } ::-webkit-scrollbar-track-piece { background-color: #3b3b3b; -webkit-border-radius: 6px; } ::-webkit-scrollbar-thumb:vertical { -webkit-border-radius: 6px; background: #666 no-repeat center; } |