css之选择器
css有哪些选择器
id 选择器、类选择器、后代选择器、子元素选择器(>)、交集选择器(div.container)、并集选择器(,用逗号隔开)、相邻兄弟选择器(+、~)、序选择器、伪类选择器(爱恨原则 love hate)、属性选择器(input[type=password])、通配符选择器(*)
注意以下序选择器中的
:last-of-type
和:last-child
-
:last-of-type
选择父元素中的这个类型中的最后一个孩子
-
:last-child
父元素中的最后一个孩子,不分类型
优先级
通常可以将 css 的优先级从高到低分为6级,如下(已验证,放心使用):
1️⃣:!important
2️⃣:内联样式
3️⃣:id选择器
4️⃣:类选择器
5️⃣:标签选择器
6️⃣:通配符
css中可以继承的属性
以 color/font-/text-/line- 开头的,除此之外还有鼠标样式cursor
相关链接:
https://wenku.baidu.com/view/40f7d6dcadf8941ea76e58fafab069dc51224747.html
:last-of-type – CSS(层叠样式表) |MDN (mozilla.org)
原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/272712.html