Skip to content

Instantly share code, notes, and snippets.

@aavrug
Created August 29, 2016 11:34
Show Gist options
  • Save aavrug/63283d7b6416281755b592b660b782a7 to your computer and use it in GitHub Desktop.
Save aavrug/63283d7b6416281755b592b660b782a7 to your computer and use it in GitHub Desktop.
Scrollbar styling
//Markup
<div class="scrollbar" id="style-1">
<div class="force-overflow"></div>
</div>
//CSS
#style-1::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #F5F5F5;
}
#style-1::-webkit-scrollbar
{
width: 12px;
background-color: #F5F5F5;
}
#style-1::-webkit-scrollbar-thumb
{
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #555;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment