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;
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; } 0 讨论(0) 查看其它10个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
css
.demo { overflow-y:scroll; } .demo { scrollbar-color:red yellow; scrollbar-width:5px; }