class 和 id 的使用场景?
class:标签的类名;css操作把一些特定的样式放置到一个class类中,可以把多个类放在一个class属性中,但必须用空格隔开。
id:标签的唯一标识;根据提供的唯一id号,快速获取标签对象。id属性值,在当前的page页面要是唯一的。
CSS选择器常见的有几种?
- 基础选择器
- 组合选择器
选 择 器 |
含义 |
E,F |
多元素选择器,用,分隔,同时匹配元素E或元素F |
E F |
后代选择器,用空格分隔,匹配E元素所有的后代(不只是子元素、子元素向下递归)元素F |
E>F |
子元素选择器,用>分隔,匹配E元素的所有直接子元素 |
E+F |
直接相邻选择器,匹配E元素之后的相邻的同级元素F |
E~F |
普通相邻选择器(弟弟选择器),匹配E元素之后的同级元素F(无论直接相邻与否) |
.class1.class2 |
id和class选择器和选择器连写的时候中间没有分隔符,. 和 # 本身充当分隔符的元素 |
element#id |
id和class选择器和选择器连写的时候中间没有分隔符,. 和 # 本身充当分隔符的元素 |
- 属性选择器
选择器 |
含义 |
E[attr] |
匹配所有具有属性attr的元素,div[id]就能取到所有有id属性的div |
E[attr = value] |
匹配属性attr值为value的元素,div[id=test],匹配id=test的div |
E[attr ~= value] |
匹配所有属性attr具有多个空格分隔、其中一个值等于value的元素 |
E[attr ^= value] |
匹配属性attr的值以value开头的元素 |
E[attr $= value] |
匹配属性attr的值以value结尾的元素 |
E[attr *= value] |
匹配属性attr的值包含value的元素 |
- 伪类选择器
选择器 |
含义 |
E:first-child |
匹配元素E的第一个子元素 |
E:link |
匹配所有未被点击的链接 |
E:visited |
匹配所有已被点击的链接 |
E:active |
匹配鼠标已经其上按下、还没有释放的E元素 |
E:hover |
匹配鼠标悬停其上的E元素 |
E:focus |
匹配获得当前焦点的E元素 |
E:lang(c) |
匹配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) |
匹配不符合当前选择器的任何元素 |
- 伪元素选择器
选择器 |
含义 |
E::first-line |
匹配E元素内容的第一行 |
E::first-letter |
匹配E元素内容的第一个字母 |
E::before |
在E元素之前插入生成的内容 |
E::after |
在E元素之后插入生成的内容 |
选择器的优先级是怎样的?对于复杂场景如何计算优先级?
1. 在属性后面使用 !important 会覆盖页面内任何位置定义的元素样式
2. 作为style属性写在元素标签上的内联样式
3. id选择器 #id
4. 类选择器 .class
5. 伪类选择器 a:active
6. 属性选择器 h1{}
7. 标签选择器 p[XXX]
8. 通配符选择器 *
9. 浏览器自定义
- 行内样式 <div style="xxx"></div> ==> a
- ID 选择器 ==> b
- 类,属性选择器和伪类选择器 ==> c
- 标签选择器、伪元素 ==> d
a:link, a:hover, a:active, a:visited 的顺序是怎样的? 为什么?
- a:link
- a:visited
- a:hover
- a:active
原因是四个选择器会相互覆盖
以下选择器分别是什么意思?
1 |
2 |
#header{} |
id为header的元素 |
.header{} |
class为header的元素 |
.header .logo{} |
class为header和logo的元素 |
.header.mobile{} |
class同时包含header和mobile的元素 |
.header p,.header h3{} |
class为header的p标签和h3标签 |
#header .nav>li{ } |
id为header的class为nav的直接子元素为li的标签 |
#header a:hover{} |
id为header元素中a标签的honver状态 |
#header .logo~p{} |
id为header下 class为logo标签之后所有的p标签 |
#header input[type="text"]{} |
id为header的后代中,input标签中,属性type的值为"text"的元素集合 |
列出你知道的伪类选择器
- E:first-child 匹配元素E的第一个子元素
- E:link 匹配所有未被点击的链接
- E:visited 匹配所有已被点击的链接
- E:active 匹配鼠标已经其上按下、还没有释放的E元素
- E:hover 匹配鼠标悬停其上的E元素
- E:enabled 匹配表单中可用的元素
- E:disabled 匹配表单中禁用的元素
- E:checked 匹配表单中被选中的radio或checkbox元素
- E::selection 匹配用户当前选中的元素
- 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:not(selector) 匹配不符合当前选择器的任何元素
div:first-child和div:first-of-type的作用和区别
- first-child 匹配其父元素的第一个子元素
- first-of-type 匹配其父元素下拥有相同标签的第一个元素
运行如下代码,解析下输出样式的原因。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>daiudga</title>
<style>
.item1:first-child{
color: red;
}
.item1:first-of-type{
background: blue;
}
</style>
</head>
<body>
<div class="ct">
<p class="item1">aa</p>
<h3 class="item1">bb</h3>
<h3 class="item1">ccc</h3>
</div>
</body>
</html>
item1的父元素是ct,ct的第一个元素是aa,颜色是红色;item1的父元素下拥有相同标签p h3的第一个元素的背景颜色是蓝色。