Skip to content
登录后刷题更便捷

下列代码中`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 元素的父元素及其子元素。

内容仅供参考,难免有不恰当的地方,如果有问题欢迎及时反馈
部分内容来自网络,如果不慎侵犯您的权益,请联系我们,以便及时删除侵权内容