เพื่อความน่าเชื่อถือฉันขอแนะนำให้ให้ชื่อคลาสหรือid
องค์ประกอบที่มีสไตล์ (เหมาะอย่างยิ่ง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
องค์ประกอบอยู่เสมอและการส่งจะตามด้วย 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 */
}