css如何改變scroll樣式的執行個體分享

來源:互聯網
上載者:User
css如何改變scroll樣式的執行個體分享

/*定義捲軸高寬及背景 高寬分別對應橫豎捲軸的尺寸*/  ::-webkit-scrollbar  {      width: 16px;      height: 16px;      background-color: #F5F5F5;  }    /*定義捲軸軌道 內陰影+圓角*/  ::-webkit-scrollbar-track  {      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);      border-radius: 10px;      background-color: #F5F5F5;  }    /*定義滑塊 內陰影+圓角*/  ::-webkit-scrollbar-thumb  {      border-radius: 10px;      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);      background-color: #555;  }
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.