css でフォーマットしたいボタンがあります。それらをフォーマットするための 2 つのオプションが#id {}
見つかりbutton {}
まし#ID {}
たbutton {}
。さまざまなサイズのボタンがあり、それらの「グループ」をフォーマットしたいと考えています。でフォーマットするのは非常に面倒です#id
。グループを与えるか、同じ名前を使用して css でアクセスすることは可能ですか?
質問する
55 次
6 に答える
2
安全に使用できるよりも一般的にボタンをターゲットにしたい場合
button { /* This will target all buttons */
/* Styles goes here */
}
または、それらをコンテナ要素内にラップして、次のようなクラスを与えます
<div class="wrap_all_btn">
<!-- All button goes here -->
</div>
CSS
div.wrap_all_btn button {
/* This will target buttons which are only inside a div
element having class .wrap_all_btn */
/* Styles goes here */
}
ラッパー内のボタンを一意にターゲットにするには、nth-child
orを使用できますが、要素固有であるため、ここnth-of-type
を好むnth-of-type
ので、作成したラッパーの 2 番目のボタンをターゲットにする場合は、次のように記述できます。
div.wrap_all_btn button {
/* This is where general styles go */
}
div.wrap_all_btn button:nth-of-type(2) {
/* Create Unique Styles For 2nd Button Without Making Any Class */
}
于 2013-05-15T12:57:28.850 に答える
0
クラスを使用できます。
HTML:
<input type="button" class="myClass">
CSS:
.myClass { width: 150px; }
于 2013-05-15T12:56:38.083 に答える
0
クラスを作成し、適用するさまざまなクラス属性に基づいてボタンをグループ化できます。
お気に入り
.button1{color:blue;}
.button2{color:red;}
.button3{color:green;}
したがって、これを行うことで、同じクラスの複数のインスタンスを、異なるボタンに適用したい回数だけ適用できます。
お役に立てれば。
于 2013-05-15T12:57:18.577 に答える
0
html オブジェクト内で定義された styleClass。
<input type ="button" class = "myClass" ...(other values like value or id ...)/>
CSSで:
.myClass {
//styling
}
于 2013-05-15T12:55:37.623 に答える