首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

记录下改滚动条样式的css

@media (min-width: 768px) {     ::-webkit-scrollbar {         width:10px;         height: 10px;     }     ::-webkit-scrollbar-button {         width: 0;         height: 0     }     ::-webkit-scrollbar-button:end:increment,::-webkit-scrollbar-button:start:decrement {         display: block     }     ::-webkit-scrollbar-button:vertical:end:decrement,::-webkit-scrollbar-button:vertical:start:increment {         display: none     }     ::-webkit-scrollbar-thumb:horizontal,::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-track:horizontal,::-webkit-scrollbar-track:vertical {         border-color: transparent;         border-style: solid     }     ::-webkit-scrollbar-track:vertical::-webkit-scrollbar-track:horizontal {         background-color: #fff;         -webkit-background-clip: padding-box;         background-clip: padding-box     }     ::-webkit-scrollbar-thumb {         min-height: 28px;         padding-top: 100;         background-color: rgba(0,0,0,.2);         -webkit-background-clip: padding-box;         background-clip: padding-box;         border-radius: 5px;         -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);     }     ::-webkit-scrollbar-thumb:hover {         background-color: rgba(0,0,0,.4);         -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25)     }     ::-webkit-scrollbar-thumb:active {         background-color: rgba(0,0,0,.5);         -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,.35)     }     ::-webkit-scrollbar-thumb:horizontal,::-webkit-scrollbar-thumb:vertical,::-webkit-scrollbar-track:horizontal,::-webkit-scrollbar-track:vertical {         border-width: 0     }     ::-webkit-scrollbar-track:hover {         background-color: rgba(0,0,0,.05);         -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.1)     }     ::-webkit-scrollbar-track:active {         background-color: rgba(0,0,0,.05);         -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.14),inset -1px -1

04
领券