Is there a way to set color for scroll area? (marked with red)
Asked
Active
Viewed 686 times
-1

Serhio g. Lazin
- 9,442
- 6
- 25
- 33
-
2Possible duplicate of [CSS customized scroll bar in div](http://stackoverflow.com/questions/9251354/css-customized-scroll-bar-in-div) – Maciej Wojcik Aug 26 '16 at 12:01
1 Answers
3
You can do like this:
body::-webkit-scrollbar {
width: 1em;
}
body::-webkit-scrollbar-track {
background: red;
}
body::-webkit-scrollbar-thumb {
background: darkgrey;
}
Only problem is that isnt supported on all browsers.

Krešimir Galić
- 358
- 1
- 9