Created
May 27, 2016 03:02
-
-
Save z2015/4f38ace9d01843a51c5cadfd56aff3c4 to your computer and use it in GitHub Desktop.
css control scrolbar
This file contains hidden or 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
| //Internet Explorer 5.5+ | |
| body, html { /* these are default, can be replaced by hex color values */ | |
| scrollbar-base-color: aqua; | |
| scrollbar-face-color: ThreeDFace; | |
| scrollbar-highlight-color: ThreeDHighlight; | |
| scrollbar-3dlight-color: ThreeDLightShadow; | |
| scrollbar-shadow-color: ThreeDDarkShadow; | |
| scrollbar-darkshadow-color: ThreeDDarkShadow; | |
| scrollbar-track-color: Scrollbar; | |
| scrollbar-arrow-color: ButtonText; | |
| } | |
| -ms-scrollbar-base-color | |
| -ms-scrollbar-face-color | |
| -ms-scrollbar-highlight-color | |
| -ms-scrollbar-3dlight-color | |
| -ms-scrollbar-shadow-color | |
| -ms-scrollbar-darkshadow-color | |
| -ms-scrollbar-base-color | |
| -ms-scrollbar-track-color | |
| //Webkit | |
| ::-webkit-scrollbar {} /* 1 */ | |
| ::-webkit-scrollbar-button {} /* 2 */ | |
| ::-webkit-scrollbar-track {} /* 3 */ | |
| ::-webkit-scrollbar-track-piece {} /* 4 */ | |
| ::-webkit-scrollbar-thumb {} /* 5 */ | |
| ::-webkit-scrollbar-corner {} /* 6 */ | |
| ::-webkit-resizer {} /* 7 */ | |
| //http://stackoverflow.com/questions/3296644/hiding-the-scrollbar-on-an-html-page |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment