Computer >> Máy Tính >  >> Lập trình >> CSS

Thêm màu nền vào đầu vào biểu mẫu bằng CSS


Để thêm màu nền vào đầu vào biểu mẫu, hãy sử dụng background-color tài sản.

Bạn có thể thử chạy mã sau để triển khai thuộc tính màu nền cho biểu mẫu

Ví dụ

<!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>