Pour ajouter une couleur d'arrière-plan à une entrée de formulaire, utilisez l'attribut background-color.
Vous pouvez essayer d'exécuter le code suivant pour implémenter l'attribut de couleur d'arrière-plan du formulaire
Démonstration en direct
<!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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!