要向表单输入添加背景颜色,请使用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 为表单输入添加背景颜色的详细内容。