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
  • 11,360
  • 21
  • 88
  • 132

1 Answers1

0

You could use background-images positioned appropriately.

See this PREVIOUS QUESTION

Also CSS-Trick article

Community
  • 1
  • 1
Paulie_D
  • 102,164
  • 10
  • 117
  • 144