::scrollbar css code example
Example 1: change scrollbar color
.scrollable-element {
scrollbar-color: red yellow; /* red is for the thumb and yellow is for the track */
}
Example 2: css vw scrollbar
body {
width: calc(100vw - (100vw - 100%));
}