skip to Main Content

I applied CSS for scrollbar but its not working on horizontal scrollbar. I applied already in CSS file for body::scrollbar but applied only vertical scrollbar in reactjs.

I already applied CSS but its working only on vertical scroll.
enter image description here

2

Answers


  1. Here is an example :

    body::-webkit-scrollbar-thumb {
      background-color: #000000;
      width: 10px;
      height: 10px;
      border-radius: 10px;
    }
    
    Login or Signup to reply.
  2. Use this for scrollbar

    ::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }
    

    Height will give you what you wanted. Change ‘px’ according to your need.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search