blob: e9df8116e397a7eaec9b40d86ecab32947478bfb (
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
|
---
title: isolation
slug: Web/CSS/isolation
tags:
- CSS
- CSS プロパティ
- 合成と混合
- NeedsContent
- isolation
- recipe:css-property
browser-compat: css.properties.isolation
translation_of: Web/CSS/isolation
---
{{CSSRef}}
[CSS](/ja/docs/Web/CSS) の **`isolation`** プロパティは、要素が新しい{{glossary("stacking context", "重ね合わせコンテキスト")}}を生成する必要があるかどうかを定義します。
{{EmbedInteractiveExample("pages/css/isolation.html")}}
このプロパティは {{cssxref("mix-blend-mode")}} との組み合わせで使用すると特に有用です。
## 構文
```css
/* キーワード値 */
isolation: auto;
isolation: isolate;
/* グローバル値 */
isolation: inherit;
isolation: initial;
isolation: revert;
isolation: unset;
```
`isolation` プロパティは、以下の一覧にあるキーワード値のうちの一つで指定します。
### 値
- `auto`
- : 何れかのプロパティが必要な要素に適用された場合にのみ、新しい重ね合わせコンテキストが作成されます。
- `isolate`
- : 新しい重ね合わせコンテキストが必ず作成されます。
## Formal definition
{{cssinfo}}
## Formal syntax
{{csssyntax}}
## 例
<h3 id="Forcing_a_new_stacking_context_for_an_element">要素で強制的に新しい重ね合わせコンテキストを生成</h3>
#### HTML
```html
<div id="b" class="a">
<div id="d">
<div class="a c">auto</div>
</div>
<div id="e">
<div class="a c">isolate</div>
</div>
</div>
```
#### CSS
```css
.a {
background-color: rgb(0,255,0);
}
#b {
width: 200px;
height: 210px;
}
.c {
width: 100px;
height: 100px;
border: 1px solid black;
padding: 2px;
mix-blend-mode: difference;
}
#d {
isolation: auto;
}
#e {
isolation: isolate;
}
```
#### 結果
{{ EmbedLiveSample('Forcing_a_new_stacking_context_for_an_element', 230, 230) }}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{cssxref("<blend-mode>")}}
- {{cssxref("mix-blend-mode")}}, {{cssxref("background-blend-mode")}}
|