目录

CSS scrollbar-color 属性


示例

设置元素滚动条的颜色:

div.scroller {
  width: 300px;
  height: 100px;
  overflow-y: scroll;
  scrollbar-color: pink lightblue;
亲自试一试 »

定义和用法

这个scrollbar-color属性指定滚动条轨道(背景)和滑块(滚动条)的颜色。

默认值: 汽车
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS 滚动条样式模块级别 1
JavaScript 语法: 对象.style.scrollbarColor="red blue"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
scrollbar-color Not supported Not supported 64.0 Not supported Not supported


CSS 语法

scrollbar-color: auto| color color;

属性值

Value Description
auto The browser sets the colors of the scrollbar. This is default
color color The first color sets the color of the thumb of the scrollbar, and the second color sets the color of the track of the scrollbar
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit