Created
December 1, 2011 15:44
-
-
Save wei-lee/1417696 to your computer and use it in GitHub Desktop.
iScroll scrollbar css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Vertical Scrollbar | |
* | |
*/ | |
.myScrollbarV { | |
position:absolute; | |
z-index:100; | |
width:7px; | |
bottom:7px; | |
top:2px; | |
right:1px; | |
pointer-events: auto !important; /* important. Otherwise you can not click on the scroll bar*/ | |
background-color: red; | |
} | |
.myScrollbarV > div { | |
width:100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment