Advertisement
phpaddict

Always show scrollbar to IPhone browser

Sep 3rd, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.46 KB | None | 0 0
  1. /* taken from http://stackoverflow.com/questions/25684620/always-show-scrollbars-in-iphone-android */
  2.  
  3. ::-webkit-scrollbar {
  4.     -webkit-appearance: none;
  5. }
  6. ::-webkit-scrollbar:vertical {
  7.     width: 12px;
  8. }
  9. ::-webkit-scrollbar:horizontal {
  10.     height: 12px;
  11. }
  12. ::-webkit-scrollbar-thumb {
  13.     background-color: rgba(0, 0, 0, .5);
  14.     border-radius: 10px;
  15.     border: 2px solid #ffffff;
  16. }
  17. ::-webkit-scrollbar-track {
  18.     border-radius: 10px;  
  19.     background-color: #ffffff;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement