Css實現漂亮的滾動條樣式

*替換成指定元素web

*::-webkit-scrollbar {
 /*滾動條總體樣式*/
 width : 10px;  /*高寬分別對應橫豎滾動條的尺寸*/
 height: 1px;
 }
*::-webkit-scrollbar-thumb {
 /*滾動條裏面小方塊*/
 border-radius   : 10px;
 background-color: skyblue;
 background-image: -webkit-linear-gradient(
     45deg,
     rgba(255, 255, 255, 0.2) 25%,
     transparent 25%,
     transparent 50%,
     rgba(255, 255, 255, 0.2) 50%,
     rgba(255, 255, 255, 0.2) 75%,
     transparent 75%,
     transparent
 );
 }
*::-webkit-scrollbar-track {
 /*滾動條裏面軌道*/
 box-shadow   : inset 0 0 5px rgba(0, 0, 0, 0.2);
 background   : #ededed;
 border-radius: 10px;
 }
相關文章
相關標籤/搜索