目录
属性选择器
E[att^="value"]
E[att$="http"]
E[att*="http"]
关系选择器
子代:
相邻兄弟:
普通兄弟:
结构伪类选择器
链接伪类选择器
伪元素选择器
CSS的继承与层叠
CSS的继承性
CSS的层叠性
eg:
a[href^="http"] { background: red; }
a[href$="png"] { background: red; }
a[class*=links] { background: red; }
body>p{ background: pink; }
.active+p{ background: green; }
.active~p{ background: yellow; }
eg:
ulli:first-child{ background: red;}
ulli:last-child{ background: green;}
p:nth-child(1){ background: yellow;}
p:nth-of-type(2){ background: blue;}
中间为英文输入法的【:】冒号, 【:hover】伪类选择器不仅应用于a标签,还可以应用于其它选择器,如类选择器、id选择器...
element【被选元素】::before【伪元素选择器】 {
content:插入的内容;
color: green;
}
1、指多种CSS样式的叠加
作用:解决样式冲突问题
2、!important命令
若样式冲突,只有选择器优先级相同时,才能通过层叠性判断结果
上一篇:Redis 底层数据结构
下一篇:JVM系列 | 垃圾收集算法