我有以下结构:
我想隐藏前三项.我写了下面的代码,但它只隐藏了第一个孩子而不是下两个.
#test li:first-child { display:none; }
我如何隐藏其他两个呢?
#test li:nth-child(-n+3) { display: none; }
从链接的MDN文档:
Matches if the element is one of the first three children of its parent