定義和用法
該scoped屬性是一個布爾屬性。
如果存在,它指定的樣式僅應用於此元素的父元素,該元素的子元素(而不是整個文件)。
適用於
該scoped屬性可在下面的元素上使用:
元件 | 屬性 |
---|---|
<style> | scoped |
例
使用scope屬性來指定一個樣式<div>元素:
<div>
<style scoped>
h1 {color:red;}
p {color:blue;}
</style>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</div>
試一試» 瀏覽器支持
在表中的數字指定完全支持屬性所述第一瀏覽器的版本。
屬性 | |||||
---|---|---|---|---|---|
scoped | 不支持 | 不支持 | 21.0 | 不支持 | 不支持 |