1. 程式人生 > >滾動條設定顏色背景等

滾動條設定顏色背景等

 textarea::-webkit-scrollbar-track
      {
          background-color:rgba(6,12,24,0);
         -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.22);
      }
      /*定義滾動條高寬及背景*/
      textarea::-webkit-scrollbar
      {
         width: 10px;
         background-color: rgba(0, 0, 0, 0.1);
    }
     /*定義滾動條*/
    textarea::-webkit-scrollbar-thumb
    {
         background-color:rgba(6,12,24,0);
        border-radius: 10px;
     }