我
下列代码中`scope` 属性是做什么的?
难度:
html
<article>
<h1>Hello World</h1>
<style scoped>
p {
color: #ff0;
}
</style>
<p>This is my text</p>
</article>
<article>
<h1>This is awesome</h1>
<p>I am some other text</p>
</article>
scoped
属性是一个布尔属性。如果使用该属性,则样式仅仅应用到 style 元素的父元素及其子元素。