Skip to content

Instantly share code, notes, and snippets.

@tslmy
Forked from tpitale/scrollbar_example.css
Last active January 6, 2022 12:45
Show Gist options
  • Save tslmy/5022378 to your computer and use it in GitHub Desktop.
Save tslmy/5022378 to your computer and use it in GitHub Desktop.
Supports horizontal scrollbar now. I removed the scrollbar buttons.
::-webkit-scrollbar {
width: 5px;
height:5px;
}
::-webkit-scrollbar-thumb {
background-color: #999;
border-radius: 5px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: none;
}
@octiwhale
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment