blob: 3e459d8de0acdeeecf44d0b7e03f6f01db613335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
---
title: text-decoration-thickness
slug: Web/CSS/text-decoration-thickness
tags:
- CSS
- CSS テキスト装飾
- プロパティ
- Reference
- recipe:css-property
- text-decoration
- text-decoration-thickness
browser-compat: css.properties.text-decoration-thickness
translation_of: Web/CSS/text-decoration-thickness
---
{{CSSRef}}
**`text-decoration-thickness`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素内のテキストに用いられる装飾線、例えば取り消し線、下線、上線の太さを設定します。
## 構文
```css
/* 単独のキーワード */
text-decoration-thickness: auto;
text-decoration-thickness: from-font;
/* 長さ */
text-decoration-thickness: 0.1em;
text-decoration-thickness: 3px;
/* パーセント値 */
text-decoration-thickness: 10%;
/* グローバル値 */
text-decoration-thickness: inherit;
text-decoration-thickness: initial;
text-decoration-thickness: revert;
text-decoration-thickness: unset;
```
### 値
- `auto`
- : ブラウザーがテキスト装飾線の適切な太さを選択します。
- `from-font`
- : フォントファイルに推奨する太さの情報が含まれている場合は、その値を使用します。フォントファイルにこの情報が含まれていない場合は、 `auto` が設定されているのと同様に動作し、ブラウザーが適切な太さを選択します。
- `<length>`
- : テキスト装飾線の太さを {{cssxref('length')}} として指定し、フォントファイルの推奨値やブラウザーの既定値を無視します。
- `<percentage>`
- : テキスト装飾線の太さを現在のフォントの **1em** に対する {{cssxref('percentage')}} で指定します。パーセント値は相対値として継承されるので、フォントが変わるとそれに合わせて変わります。ブラウザーは最小でも 1 デバイスピクセルを使用しなければなりません。このプロパティを適用した場合、フォントの大きさが異なる子要素があっても、適用されたボックス全体で太さが一定になります。
## 公式定義
{{CSSInfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Varying_thickness">様々な太さ</h3>
#### HTML
```html
<p class="thin">赤い 1px の下線を引いたテキストです。</p>
<p class="thick">赤い 5px の下線を引いたテキストです。</p>
<p class="shorthand">これは同等の一括指定を使用しています。</p>
```
#### CSS
```css
.thin {
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-color: red;
text-decoration-thickness: 1px;
}
.thick {
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-color: red;
text-decoration-thickness: 5px;
}
.shorthand {
text-decoration: underline solid red 5px;
}
```
#### 結果
{{ EmbedLiveSample('Varying_thickness', '', '', '') }}
## 仕様書
{{Specifications}}
> **Note:** このプロパティは `text-decoration-width` と呼ばれていましたが、 2019 年に `text-decoration-thickness` に更新されました。
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("text-decoration")}}
- {{cssxref("text-underline-offset")}}
|