让我们看看下面的 HTML 块,
在这里,在上面的块中,我们为每个 div 使用了类。
我们也可以替换classes
为CSS selectors
.first{
/* some styles */
}
.first:nth-child(1){
/* some styles */
}
.first div:nth-child(1){
/* some styles */
}
上面的 CSS chunk 也能满足我们的要求
,最佳实践是什么?解释我们可以使用的条件selectors
并classes
感谢:)