要向表單輸入新增背景顏色,請使用background-color屬性。
您可以嘗試執行下列程式碼實作表單的背景顏色屬性
#現場示範
<!DOCTYPE html> <html> <head> <style> input[type=text] { width: 100%; padding: 10px 15px; margin: 5px 0; box-sizing: border-box; background-color: gray; } </style> </head> <body> <p>Fill the below form,</p> <form> <label for = "subject">Subject</label> <input type = "text" id = "subject" name = "sub"> <label for = "student">Student</label> <input type = "text" id = "student" name = "stu"> </form> </body> </html>
以上是使用 CSS 為表單輸入新增背景顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!