Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想象一下,我在外部样式表中定义了几个类
.b {font-weight:bold;} .c {text-align:center;}
现在我想要另一个类,它是 b 和 c 的组合
.bc
是否可以使用 b 和 c 类定义 bc 类,或者我应该写完整
.bc {font-weight:bold;text-align:center;}
只需在 HTML 中包含这两个类,它就可以为您完成这项工作。
<div class="b c">div content</div>
中的“b”和“c”class=将从两者中获取样式。你甚至可以添加更多,e,f,g...等。
class=