0

I have done this code below to customize my scrollbars but I need to put the arrows in the buttons, how can I made it?

::-webkit-scrollbar {
    width: 50px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 50px;
}

::-webkit-scrollbar-button:vertical:decrement,
::-webkit-scrollbar-button:vertical:increment {
background-color: #ccc;
}
tshepang
  • 12,111
  • 21
  • 91
  • 136

1 Answers1

0

You could use background-images positioned appropriately.

See this PREVIOUS QUESTION

Also CSS-Trick article

Community
  • 1
  • 1
Paulie_D
  • 107,962
  • 13
  • 142
  • 161