Search code examples
csswebkitscrollbar

Webkit Scrollbar Width Change


I am trying to change the width of the scrollbar through -webkit-scrollbar property but Chrome rejects it saying that it is an unknown property. Any idea why ?


Solution

  • .class::-webkit-scrollbar{ width :6px; } The above worked for me. I wanted to apply the width only when the class "class" was added to an element.