- /*滚动条*/
- ::-webkit-scrollbar {
- 4px;
- height: 4px;
- background-color: #F5F5F5;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
- background: #fff ;
- }
- /*定义滑块 内阴影+圆角*/
- ::-webkit-scrollbar-thumb {
- border-radius: 3px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color:#40bbf4;
- }