css选择器 + hover 悬停
大约 4 分钟
css选择器 + hover 悬停
1、什么是css选择器
就是改变样式的对象 😛😛😛😛😛😛😛😛😛
2、有哪些选择器
2.1 类选择器
.box1{
width:200px;
height: 200px;
background-color: darkorchid;
}
2.2 id选择器
#box1-id{
background-color: darkred;
}
2.3 标签选择器
div{
width:200px;
height: 200px;
background-color: darkturquoise;
}
2.4 群组选择器
.box1,.box2{
width: 200px;
height: 200px;
background-color: darkorange;
margin-top: 20px;
}
2.5 包含选择器
语法:h1 em {color:red;} 表示的是从h1开始里面包含的所有的em元素变成红色,h1为祖先,其他的em都是后代,即选中后代,不管是儿子还是孙子,只要是都会被选中,为后代选择器。
.box1 .box1-child {
width:100px;
height: 100px;
background-color: darkseagreen;
}
语法:h1>em{color:red;} 表示的是从h1开始里面的第一层em元素变成红色,h1为祖先,em为儿子,就像世袭制一样,只能传给儿子,孙子和其他堂亲都不行
.box1 > .box1-child{
width:100px;
height: 150px;
background-color: darkseagreen;
}
2.6 相邻兄弟选择器
加号有递进的效果
h1 + p {margin-top:50px;} 表示是“选择紧接在 h1 元素后出现的段落,h1 和 p 元素拥有共同的父元素”这是官方的说法,理解的误区在于这个加号,h1和p并不是同时被选中的,而是选择的是h1紧跟着后面的p元素,是递进的关系,
.box1-child + div{
background-color: brown;
}
###很重要
<style type="text/css">
h1 + p + p + p + p {font-size:50px;}
</style>
2.7 所有兄弟选择器
表示该h1的所有带有p标签的兄弟的字体为80px;
<style>
h1~p{
font-size:80px
}
</style>
class | .intro | 选择class="intro"的所有元素 | 1 |
---|---|---|---|
#id | #firstname | 选择id="firstname"的所有元素 | 1 |
* | * | 选择所有元素 | 2 |
element | p | 选择所有p元素 | 1 |
element,element | div,p | 选择所有div元素和所有p元素 | 1 |
element element | div p | 选择div元素内部的所有p元素 | 1 |
element>element | div>p | 选择父元素为div元素的所有p元素 | 2 |
element+element | div+p | 选择紧接在div元素之后的p元素 | 2 |
[attribute] | [target] | 选择带有target属性所有元素 | 2 |
[attribute=value] | [target=_blank] | 选择target="_blank"的所有元素 | 2 |
:link | a:link | 选择所有未被访问的链接 | 1 |
:visited | a:visited | 选择所有已被访问的链接 | 1 |
:active | a:active | 选择点击那一刻的链接 | 1 |
:hover | a:hover | 选择鼠标指针位于其上的链接 | 1 |
:focus | input:focus | 选择获得焦点的input元素 | 2 |
:first-letter | p:first-letter | 选择每个p元素的首字母 | 1 |
:first-line | p:first-line | 选择每个p元素的首行 | 1 |
:first-child | li:first-child | 选择属于父元素的第一个子元素的每个li元素 | 2 |
:before | p:before | 在每个p元素的内容之前插入内容 | 2 |
:after | p:after | 在每个p元素的内容之后插入内容 | 2 |
element1~element2 | div~p | 选择前面有div元素的p元素 | 3 |
[attribute^=value] | a[src^="https"] | 选择其src属性值以“https”开头的每个a元素 | 3 |
[attribute$=value] | a[src$=".pdf"] | 选择其src属性以“pdf”结尾的所有a元素 | 3 |
[attribute*=value] | a[src*="abc"] | 选择其src属性中包含“abc”子串的每个a元素 | 3 |
:nth-child(n) | p:nth-child(n) | 选择属于其父元素的第二个子元素的每个p元素 | 3 |
:nth-last-child(n) | p:nth-last-child(n) | 同上,从最后一个子元素开始计数 | 3 |
:nth-of-type(n) | p:nth-of-type(n) | 选择属于其父元素第二个p元素的每个p元素 | 3 |
:nth-last-of-type(n) | p:nth-last-of-type(n) | 同上,但是从最后一个子元素开始计数 | 3 |
:last-child | li:last-child | 选择属于其父元素最后一个子元素每个li元素 | 3 |
:root | :root | 选择文档的根元素 | 3 |
:empty | p:empty | 选择没有子元素的每个p元素(包括文本节点,空格,换行也不可以) | 3 |
:target | #news:target | 选择当前活动的#news元素 | 3 |
:enabled | input:enabled | 选择每个启用的input元素 | 3 |
:disabled | input:disabled | 选择每个禁用的input元素 | 3 |
:checked | input:checked | 选择每个被选中的input元素 | 3 |
:not(selector) | :not(p) | 选择非p元素的每个元素,需要设定p元素属性 | 3 |
::selection | ::selection | 选择被用户选取的元素部分 | 3 |
辅助地址:https://www.cnblogs.com/zxy37/archive/2004/01/13/14255279.html