-1

Is there a way to set color for scroll area? (marked with red) enter image description here

Serhio g. Lazin
  • 9,442
  • 6
  • 25
  • 33
  • 2
    Possible 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 Answers1

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.