目录

CSS caret-color 属性


示例

设置输入元素中光标的颜色:

input {
  caret-color: red;
}
亲自试一试 »

定义和用法

这个caret-color属性指定输入、文本区域或任何可编辑元素中光标(插入符号)的颜色。

默认值: 汽车
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.caretColor="red"尝试一下

浏览器支持

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

Property
caret-color 57.0 79.0 53.0 11.1 44.0


CSS 语法

caret-color: auto| color|initial|inherit;

属性值

Value Description
auto Default. Browsers uses the currentColor for the caret
color Specifies a color to use for the caret. All legal color values can be used (rgb, hex, named-color, etc). For more information on legal values, read our CSS Colors Tutorial
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit