其他分享
首页 > 其他分享> > css中选中前n个子元素和后n个子元素

css中选中前n个子元素和后n个子元素

作者:互联网

html:

29.jpg

css代码:

30.jpg

/*选中前5个元素*/
.box>div:nth-child(-n+5){
background-color: red;
}
/*选中后5个元素*/
.box>div:nth-last-child(-n+5){
background-color: green;
}

此时的效果是:

31.jpg

标签:box,color,元素,个子,nth,选中,background,css
来源: https://blog.51cto.com/11871779/2397971