selector:nth-child(n)

关于selector:nth-child(n)的基础知识:戳这里○○○

注意:只适合该父元素(div)下的子元素(p)不再包含子元素的情况,否则"孙子辈"的元素(span)也会被选中

child A

child B

child C grandchild D grandchild E

比如,在css中写p:nth-child(2)时,会选中B和E

你可能感兴趣的:(selector:nth-child(n))