Skip to content

Instantly share code, notes, and snippets.

@pudgereyem
Created October 13, 2016 12:43
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 pudgereyem/666f6c5425f445f3df2c709a540bef5c to your computer and use it in GitHub Desktop.
Save pudgereyem/666f6c5425f445f3df2c709a540bef5c to your computer and use it in GitHub Desktop.
Hidden Scrollbar
/*
* Hidden scrollbar
*/
::-webkit-scrollbar
width: 0px
::-webkit-scrollbar-track-piece
background-color: transparent
-webkit-border-radius: 6px
@DaveEveritt
Copy link

Be nice to show a pure CSS version too.

@alihanekiz
Copy link

Just add the curly braces and semicolons, and you should be good to go.

@vitorpiovezam
Copy link

Works fine, thanks :)

pure css is here

::-webkit-scrollbar{
	width: 0px;
}

::-webkit-scrollbar-track-piece{
	background-color: transparent;
	-webkit-border-radius: 6px;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment