blob: eb825528e8a175f25317b61b5b210dfe94821c81 (
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
---
title: outline-width
slug: Web/CSS/outline-width
tags:
- CSS
- CSS 輪郭線
- CSS プロパティ
- Layout
- Reference
- recipe:css-property
browser-compat: css.properties.outline-width
translation_of: Web/CSS/outline-width
---
{{CSSRef}}
[CSS](/ja/docs/Web/CSS) の **`outline-width`** プロパティは、要素の輪郭線の太さを設定します。輪郭線とは要素の周りに描かれる線のことで、 {{cssxref("border")}} よりも外側です。
{{EmbedInteractiveExample("pages/css/outline-width.html")}}
たいていの場合、輪郭線の見た目を定義するときは一括指定プロパティ {{cssxref("outline")}} を使ったほうが便利です。
## 構文
```css
/* キーワード値 */
outline-width: thin;
outline-width: medium;
outline-width: thick;
/* <length> 値 */
outline-width: 1px;
outline-width: 0.1em;
/* グローバル値 */
outline-width: inherit;
outline-width: initial;
outline-width: revert;
outline-width: unset;
```
`outline-width` プロパティは、以下に挙げた値のうちの一つで指定します。
### 値
- {{cssxref("<length>")}}
- : 輪郭線の太さを `<length>` で指定します。
- `thin`
- : ユーザーエージェントに依存します。Firefox のようなデスクトップブラウザーでは、通常は `1px` です。
- `medium`
- : ユーザーエージェントに依存します。Firefox のようなデスクトップブラウザーでは、通常は `3px` です。
- `thick`
- : ユーザーエージェントに依存します。Firefox のようなデスクトップブラウザーでは、通常は `5px` です。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
<h3 id="Setting_an_elements_outline_width">要素の輪郭線の幅の設定</h3>
#### HTML
```html
<span id="thin">thin</span>
<span id="medium">medium</span>
<span id="thick">thick</span>
<span id="twopixels">2px</span>
<span id="oneex">1ex</span>
<span id="em">1.2em</span>
```
#### CSS
```css
span {
outline-style: solid;
display: inline-block;
margin: 20px;
}
#thin {
outline-width: thin;
}
#medium {
outline-width: medium;
}
#thick {
outline-width: thick;
}
#twopixels {
outline-width: 2px;
}
#oneex {
outline-width: 1ex;
}
#em {
outline-width: 1.2em;
}
```
#### 結果
{{EmbedLiveSample('Setting_an_elements_outline_width', '100%', '80')}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("outline")}}
- {{cssxref("outline-color")}}
- {{cssxref("outline-style")}}
|