class 和 id 的使用场景?
- id选择器在页面中是唯一的,来定义独一无二的样式
- class选择器是用来定义相似或相同的一组样式
CSS选择器常见的有几种?
-基础选择器
选择器 |
含义 |
* |
通用元素选择器,匹配页面任何元素(这也就决定了我们很少使用) |
#id |
id选择器,匹配特定id的元素 |
.class |
类选择器,匹配class包含(不是等于)特定类的元素 |
element |
标签选择器 |
选择器 |
含义 |
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元素之后插入生成的内容 |
选择器的优先级是怎样的?对于复杂场景如何计算优先级?
选择器优先级从高到低分别是:
- 在属性后面使用 !important 会覆盖页面内任何位置定义的元素样式
- 作为style属性写在元素标签上的内联样式
- id选择器
- 类选择器
- 伪类选择器
- 属性选择器
- 标签选择器
- 通配符选择器
- 浏览器自定义
复杂场景的计算:
a:link, a:hover, a:active, a:visited 的顺序是怎样的? 为什么?
a:link {
color: #000;
}
a:visited {
color: #F00;
}
a:hover {
color: #0F0;
}
a:active {
color: #00F;
}
原因:当鼠标未点击a链接时, a:link起作用,所有应该放在最上面。当鼠标放在链接上时,a:link a:hover 都会起作用,如果想让hover起作用,应将其放在后面。当鼠标点击链接的时候,如果想让a:active起作用,应将其放在后面,a:visited鼠标点击过后的样式,这个如果放到最后,a:hover a:active都不会生效,所以要放到这两个前面
以下选择器分别是什么意思?
#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标签鼠标放上去的样式
#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: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) |
匹配不符合当前选择器的任何元素 |
div:first-child、div:first-of-type、div :first-child和div :first-of-type的作用和区别 (注意空格的作用)
- div:first-child:选择属于其父元素的首个子元素的每个 <div> 元素,并为其设置样式。
- div :first-of-type:选择属于其父元素的同种标签下的首个子元素的每个 <div> 元素,并为其设置样式
- div :first-child: 选择div里面的第一个子元素
- div :first-of-type: 选择div里面的同种标签下的第一个子元素
运行如下代码,解析下输出样式的原因。
<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>
因为.item1:first-child是指class为item1的父元素也就是class为ct的div下面的第一个子元素,就是aa为红色
.item1:first-of-type是指class为item1的父元素也就是class为ct的div下面的同种类型第一个子元素,这里面有两个类型,p和h3
找每种类型的第一个,就是aa bb 背景为蓝色