📅  最后修改于: 2023-12-03 15:14:19.661000             🧑  作者: Mango
CSS | scrollbar-color 属性定义了滚动条的颜色。
scrollbar-color: auto|<color>{1,2};
/* 将滚动条设为红色 */
::-webkit-scrollbar {
background-color: #F5F5F5;
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: #FF0000;
border-radius: 20px;
}
/* 将滚动条的前景设为红色,背景设为灰色 */
::-webkit-scrollbar {
width: 10px;
background-color: #E8E8E8;
}
::-webkit-scrollbar-thumb {
background-color: #FF0000;
}
::-webkit-scrollbar-track {
background-color: #E8E8E8;
}
| Chrome | Firefox | Safari | IE / Edge | Opera | | ----------- | ----------- | ----------- | ---------- | ---------- | | 69.0 | 64.0 | 11.0 | 不支持 | 56.0 |