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=