码迷,mamicode.com
首页 > 其他好文 > 详细

自定义FireFox浏览器滚动条

时间:2017-06-28 18:56:07      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:颜色   style   url   定义   自定义   scrollbar   span   http   class   

@-moz-document url-prefix(http://),url-prefix(https://) {   
    /* 滚动条颜色 */  
    scrollbar {   
       -moz-appearance: none !important;   
       background: rgb(0,255,0) !important;   
    }   
    /* 滚动条按钮颜色 */  
    thumb,scrollbarbutton {   
       -moz-appearance: none !important;   
       background-color: rgb(0,0,255) !important;   
    }   
    /* 鼠标悬停时按钮颜色 */  
      
    thumb:hover,scrollbarbutton:hover {   
       -moz-appearance: none !important;   
       background-color: rgb(255,0,0) !important;   
    }   
    /* 隐藏上下箭头 */  
    scrollbarbutton {   
       display: none !important;   
    }   
    /* 纵向滚动条宽度 */  
    scrollbar[orient="vertical"] {   
      min-width: 15px !important;   
    }   
}

 

自定义FireFox浏览器滚动条

标签:颜色   style   url   定义   自定义   scrollbar   span   http   class   

原文地址:http://www.cnblogs.com/qq1010113045/p/7090462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!