blob: e8e41e014c23107cb29b84dab06c2a3ff347897e (
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
|
---
title: ':defined'
slug: Web/CSS/:defined
tags:
- CSS
- レイアウト
- 擬似クラス
- リファレンス
- セレクター
- ウェブ
browser-compat: css.selectors.defined
translation_of: Web/CSS/:defined
---
{{ CSSRef }}
**`:defined`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)で、定義されているすべての要素を表します。これにはブラウザーに組み込まれたすべての標準要素と、 ({{domxref("CustomElementRegistry.define()")}} メソッドを使用して) 定義に成功したカスタム要素が含まれます。
```css
/* 定義されたすべての要素を選択 */
:defined {
font-style: italic;
}
/* 特定の custom 要素のすべてのインスタンスを選択 */
simple-custom:defined {
display: block;
}
```
## 構文
{{csssyntax}}
## 例
### 定義されるまで要素を非表示にする
以下のスニペットは、 [defined-pseudo-class](https://github.com/mdn/web-components-examples/tree/master/defined-pseudo-class) のデモから取ったものです ([ライブでも参照してください](https://mdn.github.io/web-components-examples/defined-pseudo-class/)).
このデモでは、非常にシンプルで些細なカスタム要素を定義しています。
```js
customElements.define('simple-custom',
class extends HTMLElement {
constructor() {
super();
let divElem = document.createElement('div');
divElem.textContent = this.getAttribute('text');
let shadowRoot = this.attachShadow({mode: 'open'})
.appendChild(divElem);
}
})
```
次に、この要素のコピーを、標準的な `<p>` と共に文書に挿入します。
```html
<simple-custom text="Custom element example text"></simple-custom>
<p>Standard paragraph example text</p>
```
CSS では、まず以下のルールを設定します。
```css
/* 2 つの要素を背景で区別できるようにする */
p {
background: yellow;
}
simple-custom {
background: cyan;
}
/* カスタム要素と組み込み要素を両方イタリック体にする */
:defined {
font-style: italic;
}
```
それから、カスタム要素が定義されていないときには非表示にし、定義されていたらブロックレベル要素として定義して表示するという 2 つのルールを設定します。
```css
simple-custom:not(:defined) {
display: none;
}
simple-custom:defined {
display: block;
}
```
これは、複雑なカスタム要素があってページの読み込みを待ちたいときに便利です。定義が完了するまで要素のインスタンスを非表示にして、ページ上でスタイル適用前の醜い要素が一瞬現れるのを防ぐことができます。
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- [ウェブコンポーネント](/ja/docs/Web/Web_Components)
|