目录

style isolation 属性

示例

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

document.getElementById("d").style.isolation = "isolate";
亲自试一试 »

描述

隔离属性定义元素是否必须创建新的堆叠内容。


浏览器支持

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

Property
isolation 41.0 79.0 36.0 Yes 30.0

语法

返回隔离属性:

object.style.isolation

设置隔离属性:

object.style.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

技术细节

默认值: 汽车
CSS版本 CSS3

相关页面

CSS 参考:隔离特性