HJY-xh / plantTrees

每天几个前端小知识📙 2021.2.14 - new Date()
MIT License
22 stars 4 forks source link

[2021-3-30] CSS优先级有哪些注意事项? #100

Open HJY-xh opened 3 years ago

HJY-xh commented 3 years ago
HJY-xh commented 3 years ago

!important > inline > id > class > tag > * > inherit > default

!important:大于其他 行内:1000 id选择器:100 类,伪类和属性选择器,如.content:10 类型选择器和伪元素选择器:1 通配符、子选择器、相邻选择器:0

同级别的后写的优先级高。 相同class样式,css中后写的优先级高,和html中的class名字前后无关