Custom CSS Scrollbar for Firefox

后端 未结 10 2630
遥遥无期
遥遥无期 2020-11-22 02:23

I want to customize a scrollbar with CSS.

I use this WebKit CSS code, which works well for Safari and Chrome:

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


        
10条回答
  •  终归单人心
    2020-11-22 02:57

    Year 2020 this works

    /* Thin Scrollbar */
    :root{
      scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
      scrollbar-width: thin !important;
    }
    

    https://github.com/Aris-t2/CustomCSSforFx/issues/160

提交回复
热议问题