答えは簡単かもしれませんが、私には理解できません...お粗末な質問でごめんなさい。
同じcssクラスを使用するいくつかのhtml要素があります:
<a class="class1 class2 class3"></a>
すべての要素に共通のクラスを1つだけ指定するにはどうすればよいですか?
<a href="commonclass"></a>
ありがとう
class1
etc.からスタイルを取得し、別のクラスに配置します。
.class1 {
color: green;
}
.class2 {
border: 1px solid black;
}
その後、次のようになります。
.combined {
color: green;
border: 1px solid black;
}
すべての要素に css を適用してから、*
ユニバーサル セレクターを使用します
* { padding: 0; margin: 0; }
ドキュメント内のすべての要素に css を適用a
してから、タグ セレクターを使用します
a { color: red; }
I suppose you are looking for macro-like facilities such as found in some CSS frameworks like LESS, where you can define the properties for class1 and class2 as a sort of macro or quasi-class, then define what you call commonclass in terms of them.
「いくつかの html 要素」または「すべての要素」に同じ css ルールを使用するかどうかはわかりません。複数の要素に同じ CSS ルールを使用する場合は、次のように要素間にコンマを挿入します。
a, li, p { color:red; }