blob: 5f59b0816fd238928e4c803c4b3b489161d120de (
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
|
---
title: ID セレクター
slug: Web/CSS/ID_selectors
tags:
- CSS
- リファレンス
- セレクター
browser-compat: css.selectors.id
translation_of: Web/CSS/ID_selectors
---
{{CSSRef}}
CSS の **ID セレクター** (ID selector) は、 {{htmlattrxref("id")}} 属性の値に基づいて要素と一致します。選択される要素の `id` 属性は、セレクターで指定した値と完全一致していなければなりません。
```css
/* id="demo" のついた要素 */
#demo {
border: red 2px solid;
}
```
## 構文
```css
#id_value { スタイルプロパティ }
```
なお、これは次の{{Cssxref("Attribute_selectors", "属性セレクター")}}と等価です (ただし、詳細度は異なります)。
```css
[id=id_value] { スタイルプロパティ }
```
## 例
### CSS
```css
#identified {
background-color: skyblue;
}
```
### HTML
```html
<div id="identified">これは特別な ID がついています!</div>
<div>これは単なる普通の div です。</div>
```
### 結果
{{EmbedLiveSample("Examples", '100%', 50)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- [CSS セレクター](/ja/docs/Web/CSS/CSS_Selectors)
- [CSS の学習: セレクター](/ja/docs/Learn/CSS/Building_blocks/Selectors)
|