html:
css代码:
/*选中前5个元素*/ .box>div:nth-child(-n+5){ background-color: red; } /*选中后5个元素*/ .box>div:nth-last-child(-n+5){ background-color: green; }
此时的效果是:
另一种情况: