CSS text-underline-position 属性
示例
设置下划线文本装饰的位置
div.a {
text-decoration: underline;
text-underline-position: auto;
}
div.b {
text-decoration: underline;
text-underline-position: under;
}
亲自试一试 »
定义和用法
属性指定下划线文本装饰的位置。text-underline-position
默认值 | auto |
---|---|
继承 | 是 |
可动画 | 否。 了解有关可动画的信息 |
版本 | CSS3 |
JavaScript 语法 | 对象.style.textUnderlinePosition="under" 试一试 |
浏览器支持
表格中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
text-underline-position | 33.0 | 79.0 | 74.0 | 12.1 | 20.0 |
CSS 语法
text-underline-position: auto|under|from-font|left|right|initial|inherit;
属性值
值 | 描述 | 播放 |
---|---|---|
auto | 默认值。浏览器设置下划线的位置 | 演示 ❯ |
under | 将下划线设置为字母基线下方 | 演示 ❯ |
from-font | 如果字体文件包含有关下划线位置的信息,则使用该值。否则,使用 auto | |
left | 在垂直书写模式下,下划线将放置在文本左侧。在水平书写模式下,下划线将放置为 auto | |
right | 在垂直书写模式下,下划线将放置在文本右侧。在水平书写模式下,下划线将放置为 auto | |
initial | 将此属性设置为其默认值。 了解有关initial的信息 | |
inherit | 从其父元素继承此属性。 了解有关inherit的信息 |
相关页面
CSS 教程:CSS 文本装饰
HTML DOM 参考:textDecoration 属性