text-underline-position

Baseline Widely available *

This feature is well established and works across many devices and browser versions. It’s been available across browsers since November 2020.

* Some parts of this feature may have varying levels of support.

text-decoration属性的值设置为 underline 之后,可以用 text-underline-position 属性为其设置下划线的位置。

css
/* 只设置一个属性值 */
text-underline-position: auto;
text-underline-position: under;
text-underline-position: left;
text-underline-position: right;

/* 设置多个属性值 */
text-underline-position: under left;
text-underline-position: right under;

/* 全局属性值 */
text-underline-position: inherit;
text-underline-position: initial;
text-underline-position: unset;
初始值auto
适用元素所有元素
是否是继承属性
计算值as specified
动画类型离散值

语法

属性值

auto

用户代理 会根据自己的算法来确认下划线是放在字母基线上还是 放在字母基线下方。

under

强制下划线的位置为字母基线的下方,在这个位置,下划线不会穿过任何字母,这样能确保数学方程式或者化学式的下标不会被下划线阻挡。

left

在垂直排版模式下,使下划线的位置在文字的左侧,在水平排版模式下,和 under 相同。

在垂直排版模式下,使下划线的位置在文字的右侧,在水平排版模式下,和 under 相同。

auto-pos 非标准

auto的同义词,应使用 auto

above 非标准

强制下划线放置于文本上面。当使用东亚文字时,此效果和使用 auto 相同。

below 非标准

强制下划线放置于文本下面。当使用字母文字的时候,此效果和使用 auto 相同。

正式语法

text-underline-position = 
auto |
[ under || [ left | right ] ]

示例

由于 text-underline-position 属性可以继承,且无法用 text-decoration 简写属性重置,所以应当在全局级别设置其值。比如,under 值对一篇包括大量使用下标的数学或者化学公式的文档是非常有用的。

css
:root {
  text-underline-position: under;
}

规范

Specification
CSS Text Decoration Module Level 3
# text-underline-position-property

浏览器兼容性

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
text-underline-position
from-font
left
right
under

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
Requires a vendor prefix or different name for use.
Has more compatibility info.

参阅