Skip to content

Instantly share code, notes, and snippets.

@yuntas
Created July 7, 2018 01:28
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 yuntas/fe7b5c9c74a33212efcfd68466c2f9e7 to your computer and use it in GitHub Desktop.
Save yuntas/fe7b5c9c74a33212efcfd68466c2f9e7 to your computer and use it in GitHub Desktop.
Google Chrome からスクロールバーを削除・非表示する方法 ref: https://qiita.com/yuntas/items/cc800b6c181b6b9f1684
::-webkit-scrollbar {
display:none; <=====これ!
}
::-webkit-scrollbar-button {
}
::-webkit-scrollbar-track {
}
::-webkit-scrollbar-track-piece {
}
::-webkit-scrollbar-thumb {
}
::-webkit-scrollbar-corner {
}
::-webkit-resizer {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment