aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/css/adjacent_sibling_combinator/index.md
blob: 62413a4ee16105c0748a7d2fffa52e4333499938 (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
---
title: 隣接兄弟結合子
slug: Web/CSS/Adjacent_sibling_combinator
tags:
  - CSS
  - NeedsMobileBrowserCompatibility
  - リファレンス
  - セレクター
browser-compat: css.selectors.adjacent_sibling
translation_of: Web/CSS/Adjacent_sibling_combinator
---
{{CSSRef("Selectors")}}

**隣接兄弟結合子** (adjacent sibling combinator, `+`) は 2 つのセレクターを接続し、 2 つ目の要素が 1 つ目の要素の _直後_ にあって、両者が同じ親{{DOMxRef("element", "要素")}}の子同士である場合に一致します。

```css
/* 画像の直後に来る段落 */
img + p {
  font-style: bold;
}
```

## 構文

```css
直前の要素 + 対象の要素 { <em>スタイルプロパティ</em> }
```

## 例

### CSS

```css
li:first-of-type + li {
  color: red;
}
```

### HTML

```html
<ul>
  <li>One</li>
  <li>Two!</li>
  <li>Three</li>
</ul>
```

### 結果

{{EmbedLiveSample("Examples", "100%", 100)}}

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- [一般兄弟結合子](/ja/docs/Web/CSS/General_sibling_combinator)