嵌套 <style> 元素
每个组件只能有一个顶级 <style>
标签。
但是,可以在其他元素或逻辑块内嵌套 <style>
标签。
在这种情况下,<style>
标签将按原样插入 DOM;不会对 <style>
标签进行作用域或处理。
<div>
<style>
/* this style tag will be inserted as-is */
div {
/* this will apply to all `<div>` elements in the DOM */
color: red;
}
</style>
</div>
上一页 下一页