This repository has been archived on 2022-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
saas-page-web/css/scroll.css

40 lines
472 B
CSS
Raw Permalink Normal View History

2022-08-30 01:39:22 +00:00
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb{
background-color:rgba(0, 147, 255, 0.4);
height:50px;
outline-offset:-2px;
outline:2px solid rgba(0, 0, 0, 0);
-webkit-border-radius:4px;
border: 2px solid rgba(0, 0, 0, 0);
}
/*---滚动条大小--*/
::-webkit-scrollbar{
width:8px;
height:8px;
}
/*---滚动框背景样式--*/
::-webkit-scrollbar-track-piece{
background-color:rgba(0, 0, 0, 0);
-webkit-border-radius:0;
}