Skip to content

Instantly share code, notes, and snippets.

@mahiya
Last active August 29, 2015 14:08
Show Gist options
  • Save mahiya/873dff07c889efede60e to your computer and use it in GitHub Desktop.
Save mahiya/873dff07c889efede60e to your computer and use it in GitHub Desktop.
WebKitでのスクロールバーのカスタマイズ
body {
width: 3000px;
}
body::-webkit-scrollbar {
/*background-color: red;*/
background-color: transparent;
}
body::-webkit-scrollbar-button {
/*background-color: blue;*/
}
body::-webkit-scrollbar-corner {
}
body::-webkit-scrollbar-thumb {
/*background-color: green;*/
border: 1px solid red;
}
body::-webkit-scrollbar-track {
background-color: yellow;
}
body::-webkit-scrollbar-track-piece {
background-color: orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment