zoukankan      html  css  js  c++  java
  • 修改浏览器默认的滚动条样式

    1. /*滚动条 start*/  
    2.       ::-webkit-scrollbar {  
    3.          4px;  
    4.         height: 4px;  
    5.         background-color: #F5F5F5;  
    6.       }  
    7.       /*定义滚动条轨道 内阴影+圆角*/  
    8.       ::-webkit-scrollbar-track {  
    9.         -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  
    10.         background: #fff ;  
    11.       }  
    12.       /*定义滑块 内阴影+圆角*/  
    13.       ::-webkit-scrollbar-thumb {  
    14.         border-radius: 3px;  
    15.         -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
    16.         background-color:#40bbf4;  
    17.       }  
    全部教程http://each.sinaapp.com/angular/index.html
  • 相关阅读:
    ThinkPHP
    ThinkPHP
    静态化
    静态化
    静态化
    设计模式
    sublime
    静态化
    OPTIMIZE TABLE 小解
    information_schema系列八(事物,锁)
  • 原文地址:https://www.cnblogs.com/xfdmb/p/6029352.html
Copyright © 2011-2022 走看看