Skip to content

Instantly share code, notes, and snippets.

@8dcc
Created September 29, 2021 14:40
Show Gist options
  • Save 8dcc/e0eff5e073a6798711e80a322f440443 to your computer and use it in GitHub Desktop.
Save 8dcc/e0eff5e073a6798711e80a322f440443 to your computer and use it in GitHub Desktop.
Custom scrollbar for html
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #999;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #777;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment