定义一个特定的类会更好吗
<div class="text_bold_white"> text </div>
.text_bold_white {
font-weight: bold;
color: white;
}
或者将样式分成2个类会更好吗
<div class="text_bold color_white"> text </div>
.text_bold {
font-weight: bold;
}
.color_white {
color: white;
}
来自编程背景,我倾向于第二种,因为它允许可重用性。但我想知道这是否会导致定义太多样式。它会对渲染性能产生影响吗?