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
属性,否则不会显示强调标记。
默认值 | currentcolor |
---|---|
继承 | 是 |
版本 | CSS3 |
JavaScript 语法 | object.style.textEmphasisColor="blue" |
浏览器支持
表格中的数字指定了完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
text-emphasis-color | 99.0 | 99.0 | 46.0 | 7.0 | 85.0 |
CSS 语法
text-emphasis-color: color|inherit|initial;
值 | 描述 | |
---|---|---|
color | 设置强调标记的颜色。如果未指定颜色,则使用 currentcolor | 演示 ❯ |
initial | 将此属性设置为其默认值。 了解 initial | |
inherit | 从其父元素继承此属性。 了解 inherit |