为了提高可靠性,我建议为id
要设置样式的元素提供类名或s(最好class
为文本输入提供a,因为可能会有多个输入),并id
为Submit按钮提供a(尽管a 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
元素,而提交遵循一个textarea(但这很脆弱)):
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 */
}