摘要: //选中除了最后一个div div:not(:last-child) { } //选中除了第一个div div:not(:first-child) { } //选中前两个 div:nth-child(-n+2) { } //选中除了前两个 div:nth-child(n+2) { } 使用公式 (a 阅读全文
posted @ 2021-03-09 20:28 star-meteor 阅读(70) 评论(0) 推荐(0)