目录

CSS isolation 属性


示例

为 id="e" 的元素创建一个新的堆叠上下文:

#e {
  isolation: isolate;
}
亲自试一试 »

定义和用法

这个isolation属性定义元素是否必须创建新的堆叠内容。

笔记:这个isolation属性在与以下一起使用时很有帮助背景混合模式或混合混合模式。

默认值: 汽车
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.isolation="isolate"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
isolation 41.0 79.0 36.0 Yes 30.0


CSS 语法

isolation: auto|isolate|initial|inherit;

属性值

Value Description
auto Default. A new stacking context is created only if one of the properties applied to the element requires it
isolate A new stacking context must be created
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

HTML DOM 参考:隔离特性