/* 谷歌美化滾動條 */ *::-webkit-scrollbar { width: 6px; height: 6px; } *::-webkit-scrollbar-track { background: #f3f4f9; border-radius: 2px; } *::-webkit-scrollbar-thumb { background: #c8d2e0; border-radius: 10px; } *::-webkit-scrollbar-thumb:hover { background: #333; } *::-webkit-scrollbar-corner { background: #c8d2e0; } /* 火狐美化滾動條 */ * { scrollbar-color: #c8d2e0 #f3f4f9; /* 滑塊顏色 滾動條背景顏色 */ scrollbar-width: thin; /* 滾動條寬度有三種:thin、auto、none */ }