CSS - text-underline-offset

トップ > CSSリファレンス > text-underline-offset

概要

属性名 text-underline-offset
auto | <length> | <percentage>
初期値auto
適用可能要素すべての要素
継承継承する
サポートhttps://caniuse.com/?search=text-underline-offset

説明

下線の表示場所を指定します。

説明
autoブラウザのデフォルトの場所に下線をひきます。
<length>下線までの距離を長さで指定します。
<percentage>下線までの距離をパーセントで指定します。

使用例

CSS
.uline {
  text-decoration: underline;
  font-size: 20pt;
  margin-bottom: 2rem;
}
.tuo-auto {
  text-underline-offset: auto;
}
.tuo-10px {
  text-underline-offset: 10px;
}
.tuo-50p {
  text-underline-offset: 50%;
}
HTML
<div class="uline tuo-auto">Hello</div>
<div class="uline tuo-10px">Hello</div>
<div class="uline tuo-50p">Hello</div>
表示
Hello
Hello
Hello

関連項目

text-decoration, text-underline-position

リンク


Copyright (C) 2022 杜甫々
初版:2022年8月21日、最終更新:2022年8月21日
http://www.tohoho-web.com/css/prop/text-underline-offset.htm