scrollbar style css code example
Example 1: custom scrollbar
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-track {
background: orange;
}
body::-webkit-scrollbar-thumb {
background-color: blue;
border-radius: 20px;
border: 3px solid orange;
}
Example 2: css scrollbar
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius:10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
Example 3: css edit scroll bar
::-webkit-scrollbar{width:6px;border-left:1px solid #E6ECF8;}
::-webkit-scrollbar-thumb{background-color:#d6872c;}
Example 4: customize scrollbar css
// scroll bar
::-webkit-scrollbar {
background-color: hsl(235, 24%, 19%);
width: 8px;
}
::-webkit-scrollbar-track {
background-color: hsla(235, 21%, 11%, 0.322);
box-shadow: 0 0 3px hsl(235, 21%, 11%);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: hsl(235, 21%, 11%);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(220, 98%, 61%);
}
Example 5: scrollbar css
.any-class::-webkit-scrollbar {
width: 8px;
}
.any-class::-webkit-scrollbar-track {
background: #c1c0c0;
}
.any-class::-webkit-scrollbar-thumb {
background: #828282;
}
.any-class::-webkit-scrollbar-thumb:hover {
background: #555;
}
Example 6: custom scrollbar
::-webkit-scrollbar { }
::-webkit-scrollbar-button { }
::-webkit-scrollbar-track { }
::-webkit-scrollbar-track-piece { }
::-webkit-scrollbar-thumb { }
::-webkit-scrollbar-corner { }
::-webkit-resizer { }
:horizontal
:vertical
:decrement
:increment
:start
:end
:double-button
:single-button
:no-button
:corner-present
:window-inactive
::-webkit-scrollbar-track-piece:start {
}
::-webkit-scrollbar-thumb:window-inactive {
}
::-webkit-scrollbar-button:horizontal:decrement:hover {
}
body::-webkit-scrollbar {
width: 1em;
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}