自定義FireFox瀏覽器滾動條


@-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;   
    }   
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM