blob: 7bd4f5f10cd103888a9fb24f17a98caab6b0acbb (
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
|
---
title: ':first-child'
slug: Web/CSS/:first-child
tags:
- CSS
- レイアウト
- 擬似クラス
- リファレンス
- セレクター
- ウェブ
browser-compat: css.selectors.first-child
translation_of: Web/CSS/:first-child
---
{{CSSRef}}
**`:first-child`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、兄弟要素のグループの中で最初の要素を表します。
```css
/* 兄弟要素の中で最初の <p> を
すべてを選択 */
p:first-child {
color: lime;
}
```
> **Note:** 当初の定義では、親のある要素のみが選択されていました。 Selectors Level 4 の初期に、これは必要なくなりました。
## 構文
{{csssyntax}}
## 例
### 基本的な例
#### HTML
```html
<div>
<p>This text is selected!</p>
<p>This text isn't selected.</p>
</div>
<div>
<h2>This text isn't selected: it's not a `p`.</h2>
<p>This text isn't selected.</p>
</div>
```
#### CSS
```css
p:first-child {
color: lime;
background-color: black;
padding: 5px;
}
```
#### 結果
{{EmbedLiveSample('Basic_example', 500, 200)}}
### リストのスタイル付け
#### HTML
```html
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3
<ul>
<li>Item 3.1</li>
<li>Item 3.2</li>
<li>Item 3.3</li>
</ul>
</li>
</ul>
```
#### CSS
```css
ul li {
color: blue;
}
ul li:first-child {
color: red;
font-weight: bold;
}
```
#### 結果
{{EmbedLiveSample('Styling_a_list')}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{CSSxRef(":-moz-first-node")}} {{Non-standard_Inline}}
- {{CSSxRef(":first-of-type")}}
- {{CSSxRef(":last-child")}}
- {{CSSxRef(":nth-child", ":nth-child()")}}
|