2

I have certain images which are placed in div's in the ul tag. I get scroll bar for more than 3 images. Any chance that i can apply styles to the scroll bar .

user2469756
  • 31
  • 2
  • 6

1 Answers1

2

You can style scrollbar's of webkit browsers

The css: Applicable for Chrome and safari

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

::-webkit-scrollbar-track {
      background-color: #b46868;
} 
::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2);
} 
::-webkit-scrollbar-button {
      background-color: #7c2929;
} 
::-webkit-scrollbar-corner {
      background-color: black;
} 

Styling internet explorer which is a bit different :

body {
    scrollbar-face-color: #b46868;
}

Mark that these will not work for non-webkit browsers. ex firefox so, for non webkit browsers you need to use a jquery plugin.

For more help refer this site http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-styling-scrollbars-to-match-your-ui-design/

GeekyCoder
  • 428
  • 3
  • 8