vue中不同样式写法的优先级
vue中不同样式写法的优先级
先直接上代码
html
1 | <div class="hello"> |
css
1 | h1 { |
主要有几种写法:
- html元素的css
- 在元素下设置子元素样式
- 元素设置class属性
- 元素设置style属性
代码实际运行结果:
根据实验得出结论(优先级从高到底):
元素设置style属性 > 元素设置class属性 > 在元素下设置子元素样式 > html元素的css
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.