一開始是這樣shi兒的
修改代碼之后
代碼:
// 修改滾動條樣式 /deep/::-webkit-scrollbar { width: 6px; //豎軸寬度 height: 6px; //橫軸寬度 background-color: rgba(99, 110, 246, 0.5); } /* 滾動槽 */ /deep/::-webkit-scrollbar-track { border-radius: 10px; } /deep/::-webkit-scrollbar-thumb { background-color: #636ef6; }
當然具體的你可以根據需求自己調
ps:隱藏滾動條
// 隱藏滾動條 /deep/::-webkit-scrollbar { width: 0 !important; } /deep/::-webkit-scrollbar { width: 0 !important; height: 0; }