Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 3, 2012 05:42
Show Gist options
  • Save snowman-repos/3825247 to your computer and use it in GitHub Desktop.
Save snowman-repos/3825247 to your computer and use it in GitHub Desktop.
CSS: Webkit Custom Scrollbars
::-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