我已经尝试过将两个CSS类合二为一,但我做不到。有谁知道怎么做?
.fontsize {font-size:small; }
.color1 {color:red;}
.color2 {color:blue;}
.textred {结合.fontsize + .color1 }
.textblue {结合.fontsize + .color2 }
<div class="textblue">example</div>
<div class="textred">example red</div>
我不想用:
<div class="fontsize color1">example</div>
答案 0 :(得分:0)
你为什么要那样做?你可以试试这个:
.fontsize, .textblue, .textred{ font-size: small; }
.color1 { color: red;}
.color2{color: blue;}
正如AbsoluteƵERØ在评论中所说,双重课程完全没问题。在这种情况下,我没有理由想到不使用双重类。