is “text-underline-position” supported?
HTML
<p id="auto">Underline is at or under the alphabetic baseline (some parentheses)</p>
<p id="under">Underline is under the text, so that it does not cross and descenders. (Often called accounting underline)</p>
<p id="below">Same as under? (an old IE value)</p>
<p id="left" lang="zh">As under, but on left edge of text in vertical writing modes.</p>
<p id="right" lang="ja">As under, but on right edge of text in vertical writing modes.</p>
CSS
p {
text-decoration: underline;
}
#auto {
text-underline-position: auto;
}
#under {
text-underline-position: under;
}
#below {
text-underline-position: below;
}
#left {
writing-mode: tb-rl;
writing-mode: vertical-rl;
text-underline-position: left;
}
#right {
writing-mode: tb-rl;
writing-mode: vertical-rl;
text-underline-position: left;
}