How can I increase a scrollbar's width using CSS?

后端 未结 6 1996
旧时难觅i
旧时难觅i 2020-12-02 22:32

Is it possible to increase the width of a scrollbar on a

element placed inside the ?

I am not talking about the def

6条回答
  •  再見小時候
    2020-12-02 22:56

    This sets the scrollbar width:

    ::-webkit-scrollbar {
      width: 8px;   // for vertical scroll bar
      height: 8px;  // for horizontal scroll bar
    }
    
    // for Firefox add this class as well
    .thin_scroll{
      scrollbar-width: thin; // auto | thin | none | ;
    }
    

提交回复
热议问题