Skip to content

Instantly share code, notes, and snippets.

@Mallinanga
Created March 15, 2013 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mallinanga/5168158 to your computer and use it in GitHub Desktop.
Save Mallinanga/5168158 to your computer and use it in GitHub Desktop.
#css WebKit scrollbar
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar:horizontal {
display: none;
}
::-webkit-scrollbar-track {
margin-top: 20px;
margin-bottom: 20px;
border-width: 21px 0;
margin-left: -50px;
}
::-webkit-scrollbar-track:disabled {
display: none;
}
::-webkit-scrollbar-thumb {
border-width: 19px 0;
min-height: 40px;
opacity: 0.6;
background:#666;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment