minimalist scrollbar

Solutions on MaxInterview for minimalist scrollbar by the best coders in the world

showing results for - "minimalist scrollbar"
Fernando
31 Apr 2020
1html::-webkit-scrollbar {
2    width: 10px;
3  }
4
5html::-webkit-scrollbar-track {
6    background: rgb(179, 177, 177);
7    border-radius: 10px;
8}
9
10html::-webkit-scrollbar-thumb {
11    background: rgb(136, 136, 136);
12    border-radius: 10px;
13  }
14
15html::-webkit-scrollbar-thumb:hover {
16    background: rgb(100, 100, 100);
17    border-radius: 10px;
18  }
19
20html::-webkit-scrollbar-thumb:active {
21    background: rgb(68, 68, 68);
22    border-radius: 10px;
23  }