Style isolation 属性 详解
css3基础 2023-07-30 02:39:35小码哥的IT人生shichen
Style isolation 属性
实例
为 id="d" 的元素创建新的堆叠上下文:
document.getElementById("d").style.isolation = "isolate";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
.a {
background-color: lightgreen;
}
#b {
width: 250px;
height: 250px;
}
.c {
width: 100px;
height: 100px;
border: 1px solid black;
padding: 2px;
mix-blend-mode: difference;
}
#d {
isolation: auto;
}
</style>
</head>
<body>
<h1>通过 JavaScript 更改 isolation</h1>
<button onclick="myFunction()">试一试</button>
<p>点击“试一试”按钮可更改 div “d” 的 isolation 属性。</p>
<div id="b" class="a">
<div id="d">
<div class="a c">div d</div>
</div>
</div>
<script>
function myFunction() {
document.getElementById("d").style.isolation = "isolate";
}
</script>
<p><b>注释:</b>Internet Explorer 11 及更早版本不支持 isolation 属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 isolation 属性:
object.style.isolation
设置 isolation 属性:
object.style.isolation = "auto|isolate|initial|inherit"
属性值
值 | 描述 |
---|---|
auto | 默认。仅当应用于元素的属性之一需要它时,才会创建新的堆叠上下文。 |
isolate | 必须创建新的堆叠上下文。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | auto |
---|---|
CSS 版本: | CSS3 |
浏览器支持
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
41.0 | 79.0 | 36.0 | 支持 | 30.0 |