饥人谷技术博客

CSS选择器

2017-02-25  本文已影响0人  LINPENGISTHEONE

class 和 id 的使用场景?

CSS选择器常见的有几种?

选择器的优先级是怎样的?对于复杂场景如何计算优先级?

1.属性后+!important:p {color:#ccc!important;}
2.内联样式:
3.id选择器: #id
4.类选择器: .class
5.伪类选择器:a:link
6.属性选择器:h1{}
7.标签选择器:p[XXX]
8.通用选择器:*
9.浏览器自定义
复杂场景时,计算优先级时通过数标签来计算,先数id,如果id相等再数类,如果id不相等,id多的选择器权重高,权重越高,优先级越高。如果id选择器数量相同,再数类选择器,最后数标签。

a:link, a:hover, a:active, a:visited 的顺序是怎样的? 为什么?

a:link
a:visited
a:hover
a:active

四个选择器优先级相同,要考虑他们会相互覆盖,只能按照这个顺序

以下选择器分别是什么意思?

#header{
}
.header{
}
.header .logo{
}
.header.mobile{
}
.header p, .header h3{
}
#header .nav>li{
}
#header a:hover{
}
#header .logo~p{
}
#header input[type="text"]{
}

列出你知道的伪类选择器

1.E:first-child 匹配元素E的第一个子元素
2.E:link 匹配所有未被点击的链接
3.E:visited 匹配所有已被点击的链接
4.E:active 匹配鼠标已经其上按下、还没有释放的E元素
5.E:hover 匹配鼠标悬停其上的E元素
6.E:enabled 匹配表单中可用的元素
7.E:disabled 匹配表单中禁用的元素
8.E:checked 匹配表单中被选中的radio或checkbox元素
9.E::selection 匹配用户当前选中的元素
10.E:nth-child(n) 匹配其父元素的第n个子元素,第一个编号为1
11.E:nth-last-child(n) 匹配其父元素的倒数第n个子元素,第一个编号为1
12.E:nth-of-type(n) 与:nth-child()作用类似,但是仅匹配使用同种标签的元素
13.E:nth-last-of-type(n) 与:nth-last-child() 作用类似,但是仅匹配使用同种标签的元素
14.E:last-child 匹配父元素的最后一个子元素,等同于:nth-last-child(1)
15.E:first-of-type 匹配父元素下使用同种标签的第一个子元素,等同于:nth-of-type(1)
16.E:last-of-type 匹配父元素下使用同种标签的最后一个子元素,等同于:nth-last-of-type(1)
17.E:only-child 匹配父元素下仅有的一个子元素,等同于:first-child:last-child或 :nth-child(1):nth-last-child(1)
18.E:only-of-type 匹配父元素下使用同种标签的唯一一个子元素,等同于:first-of-type:last-of-type或 :nth-of-type(1):nth-last-of-type(1)
19.E:not(selector) 匹配不符合当前选择器的任何元素

div:first-child和div:first-of-type的作用和区别

运行如下代码,解析下输出样式的原因。

<style>
.item1:first-child{
  color: red;
}
.item1:first-of-type{
  background: blue;
}
</style>
 <div class="ct">
   <p class="item1">aa</p>
   <h3 class="item1">bb</h3>
   <h3 class="item1">ccc</h3>
 </div>
d22a3c774a3a40929d782df7efb28a03c05b7c78.png
上一篇下一篇

猜你喜欢

热点阅读