任务8-CSS选择器
2016-10-17 本文已影响0人
饥人谷_桶饭
-
CSS选择器常见的有几种?
- 标签选择器
- id选择器
- class选择器
- 伪类选择器
- 组合选择器
- 通配符选择器
-
选择器的优先级是怎样的?
优先级从上到下排列。- !import
- 内联样式
- id选择器
- 类选择器
- 伪类选择器
- 属性选择器
- 标签选择器
-
class 和 id 的使用场景?
id:布局的时候使用,用于区分大的区块
class:书写结构样式时可以使用,相同结构的模块可以用一个class名,增加样式复用率。 -
使用CSS选择器时为什么要划定适当的命名空间?
提高代码可读性,也方便团队的协作和维护,避免与别人重复。让浏览器更方便的解析,避免各浏览器渲染不一致。 -
以下选择器分别是什么意思?
#header{
/*选择id名为header的元素*/
}
.header{
/*选择class名为header的元素*/
}
.header .logo{
/*选择class名为header的元素的子元素class为logo的元素*/
}
.header.mobile{
/*选择class名为header和mobile的元素*/
}
.header p, .header h3{
/*选择class名为header下的p标签元素和class名为header下的h3标签元素*/
}
#header .nav>li{
/*选择id名为header下的class名为nav的子元素下的子元素li*/
}
#header a:hover{
/*给id名为header下的a标签元素添加鼠标悬停时的效果样式*/
}
- 列出你知道的伪类选择器
- E:first-child 匹配元素E的第一个子元素
- E:link 匹配所有未被点击的链接
- E:visited 匹配所有已被点击的链接
- E:active 匹配鼠标已经其上按下、还没有释放的E元素
- E:hover 匹配鼠标悬停其上的E元素
- E:focus 匹配获得当前焦点的E元素
- E:lang© 匹配lang属性等于c的E元素
- E:enabled 匹配表单中可用的元素
- E:disabled 匹配表单中禁用的元素
- E:checked 匹配表单中被选中的radio或checkbox元素
- E::selection 匹配用户当前选中的元素
- E:root 匹配文档的根元素,对于HTML文档,就是HTML元素
- E:nth-child(n) 匹配其父元素的第n个子元素,第一个编号为1
- E:nth-last-child(n) 匹配其父元素的倒数第n个子元素,第一个编号为1
- E:nth-of-type(n) 与:nth-child()作用类似,但是仅匹配使用同种标签的元素
- E:nth-last-of-type(n) 与:nth-last-child() 作用类似,但是仅匹配使用同种标签的元素
- E:last-child 匹配父元素的最后一个子元素,等同于:nth-last-child(1)
- E:first-of-type 匹配父元素下使用同种标签的第一个子元素,等同于:nth-of-type(1)
- E:last-of-type 匹配父元素下使用同种标签的最后一个子元素,等同于:nth-last-of-type(1)
- E:only-child 匹配父元素下仅有的一个子元素,等同于:first-child:last-child或 :nth-child(1):nth-last-child(1)
- E:only-of-type 匹配父元素下使用同种标签的唯一一个子元素,等同于:first-of-type:last-of-type或 :nth-of-type(1):nth-last-of-type(1)
- E:empty 匹配一个不包含任何子元素的元素,文本节点也被看作子元素
- E:not(selector) 匹配不符合当前选择器的任何元素
- :first-child和:first-of-type的作用和区别
first-child:匹配父元素下的第一个子元素。
first-of-type:匹配父元素下相同类型的子元素中的第一个。
- 运行如下代码,解析下输出样式的原因。
first-child选中了class为item1的第一个元素字体颜色为红色。
first-of-type选中了class为item1的并且是同一种类元素的第一个元素背景色为蓝色。 - text-align: center的作用是什么,作用在什么元素上?能让什么元素水平居中
作用是居中,作用在块级元素上。 - 如果遇到一个属性想知道兼容性,在哪查看?
http://caniuse.com/