当我使用样式 CSS 时,如下所示:
#test p{/*css code here*/}
#test span{/*css code here*/}
#test p.one{/*css code here*/}
#test span.test{/*css code here*/}
#test
然后每次选择带有id的div会比较容易,如下:
begin #test
p{/*css code here*/}
span{/*css code here*/}
p.one{/*css code here*/}
span.test{/*css code here*/}
end #test
这是 CSS 样式的好习惯吗?如果是这样,我希望这将被添加到未来版本的 CSS 中。