To add a background color to a form input, use the background-color attribute.
You can try running the following code to implement the background color attribute of the form
Live demonstration
<!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>
The above is the detailed content of Add background color to form inputs using CSS. For more information, please follow other related articles on the PHP Chinese website!