css 如何匹配前N个子元素及最后N个子元素
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 369
Author 回答者: shfshanyue
- 如何匹配最前三个子元素:
:nth-child(-n+3)
- 如何匹配最后三个子元素:
:nth-last-child(-n+3)
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 369
Author 回答者: shfshanyue
:nth-child(-n+3)
:nth-last-child(-n+3)