- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 块内元素
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 聚焦
- CSS - 缩放
- CSS - 平移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - z-index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - all
- CSS - inset
- CSS - isolation
- CSS - overscroll
- CSS - justify-items
- CSS - justify-self
- CSS - tab-size
- CSS - pointer-events
- CSS - place-content
- CSS - place-items
- CSS - place-self
- CSS - max-block-size
- CSS - min-block-size
- CSS - mix-blend-mode
- CSS - max-inline-size
- CSS - min-inline-size
- CSS - offset
- CSS - accent-color
- CSS - user-select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS 响应式 - 简介
- CSS 响应式 - 视口
- CSS 响应式 - 网格视图
- CSS 响应式 - 媒体查询
- CSS 响应式 - 图片
- CSS 响应式 - 视频
- CSS 响应式 - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - 光标颜色属性
CSS caret-color 属性指定光标的颜色,光标是可见的标记,也称为文本输入光标。它用于使用光标且可编辑的输入元素,例如输入表单、文本框、textarea 等。
语法
caret-color: auto | color | transparent | initial | inherit;
属性值
值 | 描述 |
---|---|
auto | 浏览器使用 currentColor 来表示光标。默认值。 |
color | 可以使用不同的格式(颜色名称、十六进制、rgb 等)指定光标的颜色。 |
transparent | 光标不可见。 |
initial | 将属性设置为其默认值。 |
inherit | 从父元素继承属性。 |
CSS 光标颜色属性示例
以下示例说明了使用不同值的 caret-color 属性。
使用 auto 值的光标颜色属性
要让浏览器决定使用当前文本颜色来决定光标的颜色,我们使用 auto 值。当前文本颜色将应用于光标。这在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> div { display: grid; gap: 20px; width: 60%; } .inp { border: 2px solid black; font-size: 16px; padding: 5px; caret-color: auto; } .text { color: blue; } .textarea { color: red; } </style> </head> <body> <h2> CSS caret-color property </h2> <div> <label> caret-color: auto (color of the text will be applied to caret) </label> <input type="text" value="Default cursor color." class=" inp text" /> <textarea rows="10" class=" inp textarea">Default caret color. </textarea> </div> </body> </html>
使用颜色值的光标颜色属性
要为光标指定我们选择的颜色,我们可以使用不同的格式(颜色名称、十六进制值、rgb 值、hsl 值等)指定颜色。指定的颜色将应用于光标。这在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> div { display: grid; gap: 20px; width: 60%; } .inp { border: 2px solid black; font-size: 20px; padding: 5px; } .text1 { caret-color: orange; } .text2 { caret-color: #ff4d94; } .text3 { caret-color: rgb(0, 204, 204); } .textarea { caret-color: hsl(120, 100%, 50%); } </style> </head> <body> <h2> CSS caret-color property </h2> <div> <label> caret-color: color values (specified color will be applied to caret.) </label> <input type="text" value="Green caret color." class=" inp text1" /> <input type="text" value="Pink cursor color." class=" inp text2" /> <input type="text" value="Blue cursor color." class=" inp text3" /> <textarea rows="10" class=" inp textarea">green cursor color. </textarea> </div> </body> </html>
使用 transparent 值的光标颜色属性
要使光标透明,使其不可见,我们使用 transparent 值。这在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> div { display: grid; gap: 20px; width: 60%; } .inp { border: 2px solid black; font-size: 16px; padding: 5px; caret-color: transparent; } </style> </head> <body> <h2> CSS caret-color property </h2> <div> <label> caret-color: transparent (cursor color will not be visible) </label> <input type="text" value="transparent caret." class="inp" /> <textarea rows="10" class=" inp">transparent caret. </textarea> </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
caret-color | 57.0 | 79.0 | 53.0 | 11.1 | 44.0 |
css_properties_reference.htm
广告