Skip to content

Instantly share code, notes, and snippets.

@jentanbernardus
Created February 23, 2013 15:28
Show Gist options
  • Save jentanbernardus/5020136 to your computer and use it in GitHub Desktop.
Save jentanbernardus/5020136 to your computer and use it in GitHub Desktop.
Custom scrollbars with CSS3 and WebKit
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: none;
}
::-webkit-scrollbar-thumb {
background: -webkit-linear-gradient(left, #547c90, #002640);
border: 1px solid #333;
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment