Skip to content

Instantly share code, notes, and snippets.

@Alimjanov-Ibragim
Forked from spemer/customize-scrollbar.css
Created January 22, 2019 13:42
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 Alimjanov-Ibragim/dd12da8a50183d81c39fe4011382ddaf to your computer and use it in GitHub Desktop.
Save Alimjanov-Ibragim/dd12da8a50183d81c39fe4011382ddaf to your computer and use it in GitHub Desktop.
Customize website's scrollbar like Mac OS. Not supports in Firefox and IE.
/* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */
/* total width */
body::-webkit-scrollbar {
background-color:#fff;
width:16px
}
/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
background-color:#fff
}
/* scrollbar itself */
body::-webkit-scrollbar-thumb {
background-color:#babac0;
border-radius:16px;
border:4px solid #fff
}
/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {display:none}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment