目录

CSS text-emphasis-color 属性


示例

使用 text-emphasis-color 属性:

p.ex1 {
  text-emphasis-color: red;
}

p.ex2 {
  text-emphasis-color: blue;
}

p.ex3 {
  text-emphasis-color: rgb(130, 180, 150);
}

p.ex4 {
  text-emphasis-color: currentcolor;
}
亲自试一试 »

定义和用法

这个text-emphasis-color属性设置强调标记的颜色。

提示:不显示强调标记,除非 text-emphasis-style属性已设置。

默认值: 当前颜色
遗传: 是的
版本: CSS3
JavaScript 语法: 对象.style.textEmphasisColor="blue"

浏览器支持

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

Property
text-emphasis-color 99.0 99.0 46.0 7.0 85.0


CSS 语法

text-emphasis-color: color|inherit|initial;

Value Description
color Sets the color of the emphasis marks. If no color is specified, it uses the currentcolor Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit