Custom CSS Scrollbar for Firefox

后端 未结 10 2596
遥遥无期
遥遥无期 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:45

    As of now there is just two property for firefox scrollbar customization is available .

    scrollbar-color & scrollbar width

    scrollbar-color:red yellow; (track,thumb) scrollbar-width:5px;

    HTML

    css

    .demo {
    overflow-y:scroll;
    }
    
    .demo {
    scrollbar-color:red yellow;
    scrollbar-width:5px;
    }
    

提交回复
热议问题