首页 > 其他分享> > css中选中前n个子元素和后n个子元素 css中选中前n个子元素和后n个子元素 2019-05-21 15:55:55 作者:互联网 html:css代码:/*选中前5个元素*/ .box>div:nth-child(-n+5){ background-color: red; } /*选中后5个元素*/ .box>div:nth-last-child(-n+5){ background-color: green; }此时的效果是:标签:box,color,元素,个子,nth,选中,background,css 来源: https://blog.51cto.com/11871779/2397971