信頼性を高めるために、id
スタイルする要素にクラス名またはsを与えることをお勧めします(class
おそらく複数あるため、テキスト入力の場合は)とid
、送信ボタンにを付けます(ただし、class
でも機能します)。
<form action="#" method="post">
<label for="text1">Text 1</label>
<input type="text" class="textInput" id="text1" />
<label for="text2">Text 2</label>
<input type="text" class="textInput" id="text2" />
<input id="submitBtn" type="submit" />
</form>
CSSを使用:
.textInput {
/* styles the text input elements with this class */
}
#submitBtn {
/* styles the submit button */
}
より最新のブラウザについては、(同じHTMLを使用して)属性で選択できます。
.input {
/* styles all input elements */
}
.input[type="text"] {
/* styles all inputs with type 'text' */
}
.input[type="submit"] {
/* styles all inputs with type 'submit' */
}
また、兄弟コンビネーターを使用することもできます(スタイルへのテキスト入力は常にlabel
要素の後に続き、送信はテキストエリアに従います(ただし、これはかなり壊れやすいため))。
label + input,
label + textarea {
/* styles input, and textarea, elements that follow a label */
}
input + input,
textarea + input {
/* would style the submit-button in the above HTML */
}