【CSS】text-decoration-line - テキストの装飾(種類)
CSSのtext-decoration-lineプロパティについて解説します。
検証環境
text-decoration-line
text-decoration-lineは“テキスト装飾の種類”のプロパティです。
基本構文
text-decoration-line: 値;
複数の値をスペースで区切って指定できます。
text-decoration-line: 値 値 値;
値
代表的な値は次の通りです。
値 | 意味 |
---|---|
none | 装飾なし |
underline | 下線 |
overline | 上線 |
line-through | 中央線 |
サンプル
下線
テキストに下線の装飾を付けるサンプルです。
<style>
p {
___ih_hl_start
text-decoration-line: underline;
___ih_hl_end
}
</style>
<p>CSS : Cascading Style Sheets</p>
上線
テキストに上線の装飾を付けるサンプルです。
<style>
p {
___ih_hl_start
text-decoration-line: overline;
___ih_hl_end
}
</style>
<p>CSS : Cascading Style Sheets</p>
中央線
テキストに中央線の装飾を付けるサンプルです。
<style>
p {
___ih_hl_start
text-decoration-line: line-through;
___ih_hl_end
}
</style>
<p>CSS : Cascading Style Sheets</p>
複数装飾
テキストに上線と下線の装飾を付けるサンプルです。
<style>
p {
___ih_hl_start
text-decoration-line: underline overline;
___ih_hl_end
}
</style>
<p>CSS : Cascading Style Sheets</p>