這次帶給大家修改捲軸樣式的方法,修改捲軸樣式的注意事項有哪些,下面就是實戰案例,一起來看一下。
支援360極速 chrome firfox 不支援ie9
/*滚动条样式*/::-webkit-scrollbar {/*滚动条整体样式*/ width: 6px!important;; /*高宽分别对应横竖滚动条的尺寸*/ height: 6px!important;; background: #ffffff!important;; cursor: pointer!important; } ::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ border-radius: 5px!important; -webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;; background: rgba(95,168,255,0.8)!important;; cursor: pointer!important; } ::-webkit-scrollbar-track {/*滚动条里面轨道*/ -webkit-box-shadow: inset 0 0 5px rgba(240,240,240,.5)!important;; border-radius: 0!important;; background: rgba(240,240,240,0.5)!important;; cursor: pointer!important; }
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關閱讀:
table tr th 及table tr td 字體太多超出怎樣用CSS解決
以上是修改捲軸樣式的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!