我的感受angular中文文檔的滾動條樣式很是棒,因而乎就扒了下來
https://www.angular.cn/css
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 }