要向表單輸入添加背景顏色,請使用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 為表單輸入添加背景顏色的詳細內容,更多請關注www.92cms.cn其它相關文章!