Skip to content

Instantly share code, notes, and snippets.

@fitfab
Created October 14, 2016 14:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitfab/1d1f109094193f588c2806e27278ab4d to your computer and use it in GitHub Desktop.
Save fitfab/1d1f109094193f588c2806e27278ab4d to your computer and use it in GitHub Desktop.
.content {
height: 400px;
width: 60%;
overflow-y: scroll;
overflow-x: hidden;
}
/* Scroll bar with */
::-webkit-scrollbar {
width: 10px;
}
/* Scroll bar Track styles */
::-webkit-scrollbar-track {
-webkit-box-shadow: none;
-webkit-border-radius: 10px;
border-radius: 10px;
}
/* Scroll bar Handle styles */
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #888;
-webkit-box-shadow: none;
}
::-webkit-scrollbar-thumb:window-inactive {
background: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment