CSS text-emphasis 属性
示例
text-emphasis 属性的使用
p.ex1 {
text-emphasis: filled;
}
p.ex2 {
text-emphasis: open;
}
p.ex3 {
text-emphasis: double-circle red;
}
p.ex4 {
text-emphasis: triangle blue;
}
亲自尝试 »
定义和用法
The text-emphasis
属性用于为文本应用强调标记。
The text-emphasis
属性是 text-emphasis-style
和 text-emphasis-color
的简写。
提示:强调标记的大小约为字体大小的 50%。
默认值 | none currentcolor |
---|---|
继承 | 是 |
版本 | CSS3 |
JavaScript 语法 | object.style.textEmphasis="filled blue" |
浏览器支持
表中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
text-emphasis | 99.0 | 99.0 | 46.0 | 7.0 | 85.0 |
CSS 语法
text-emphasis: none|filled|open|dot|circle|double-circle|triangle|sesame|字符串|颜色|initial|inherit;
值 | 描述 | |
---|---|---|
none | 不应用任何强调标记 | 演示 ❯ |
filled | 强调标记填充为纯色 | 演示 ❯ |
open | 强调标记为空心 | 演示 ❯ |
dot | 强调标记是小圆圈 | 演示 ❯ |
circle | 强调标记是圆圈 | 演示 ❯ |
double-circle | 强调标记是双圆圈 | 演示 ❯ |
triangle | 强调标记是三角形 | 演示 ❯ |
sesame | 强调标记是芝麻 | 演示 ❯ |
string | 强调标记是给定的字符串(一个字符) | 演示 ❯ |
color | 设置强调标记的颜色 | 演示 ❯ |
initial | 将此属性设置为其默认值。 了解 initial | |
inherit | 从其父元素继承此属性。 了解 inherit |