個人感覺angular中文文檔的滾動條樣式非常棒,於是乎就扒了下來
https://www.angular.cn/
body::-webkit-scrollbar {
/* 定義了滾動條整體的樣式 */
height: 6px;
width: 6px
}
body::-webkit-scrollbar-track {
/* 軌道部分 */
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}
body::-webkit-scrollbar-thumb {
/* 滑塊部分 */
background-color: red;
outline: #333 solid 1px
}
