```css
.leftBox {
width: 200px;
border: solid 1px #999;
padding: 15px;
.title {
font-size: 22px;
color: #868686;
}
.chile {
line-height: 40px;
&:nth-of-type(1) {
/* 选择第一个类名 */
margin-top: 20px;
}
&:nth-of-type(x) {
/* 选择其中一个指定的类名 */
margin-top: 20px;
}
&:last-child {
/* 选择最后一个类名 */
margin-top: 20px;
}
&::not(:last-child) {
/* 除最后一个之外的所有子元素 */
margin-top: 20px;
}
}
}
css选择器
最新推荐文章于 2024-11-17 20:40:20 发布