Skip to content

Instantly share code, notes, and snippets.

@JinnLynn
Created April 21, 2015 05:45
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 JinnLynn/97d387e08a4dd62c9045 to your computer and use it in GitHub Desktop.
Save JinnLynn/97d387e08a4dd62c9045 to your computer and use it in GitHub Desktop.
OS X风格滚动条
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track-piece {
background-color: transparent;
}
body::-webkit-scrollbar-track-piece {
background-color: white;
}
::-webkit-scrollbar-track-piece:no-button {
}
::-webkit-scrollbar-thumb {
background-color: #7D7D7D;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #999;
}
::-webkit-scrollbar-thumb:active {
background-color: #666;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment