<day06>伪类选择器
作者:互联网
超链接的伪类
/* 链接点击之前 */
a:link {
color: blue;
}
/* 连接访问之后 */
a:visited {
color: lightblue;
}
/* 鼠标放上去时 */
a:hover {
color: red;
}
/* 鼠标点击不松手 */
a:active {
color: green;
}
/* 当四个伪类同时应用于a标签时要注意顺序问题
hover要放到link和visited的后面
active要放在hover的后面 */
动态伪类
h3:hover {
color: pink;
}
其他伪类
li:first-child
选择li标签的第一个元素
li:last-child
选择li标签的最后一个元素
li:nth-child(n)
选择li标签的第n个元素
标签:hover,伪类,color,标签,li,child,选择器 来源: https://www.cnblogs.com/toufuwqm/p/16475663.html