hello world
// 选第3个(包括第三个)往后的
#id div:nth-child(n + 3) {
background-color: red;
}
// 选前3个
#id div:nth-child(-n + 3) {
background-color: red;
}
// 奇数元素
#id div:nth-child(2n+1) {
background-color: red;
}
// 偶数元素
#id div:nth-child(2n) {
background-color: red;
}
&
: 父级选择器.parent {
&.son1 {
background-color: red;
}
.son2 {
background-color: green;
}
}
parent.son1 { // 作用于同一标签(串联选择器)
background-color: red;
}
.parent .son2 { // 作用于不同标签(后代选择器)
background-color: green;
}
.calss-a .calss-b // 后/子代选择器, 所有子代
.calss-a >.calss-b // 后/子代选择器, 但只选取一代
.calss-a.calss-b // 串联选择器, 同代/级别,作用于同一标签
.calss-a + .calss-b // 相邻选择器, 两者相邻
.calss-a ~.calss-b // 平级选择器, 两者父级需一致, 作用于同一标签 'calss-a calss-b '>
- 1
- 2
- 3
- 4
- 5