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

Gửi kiểu đầu vào kiểu gửi bằng CSS

Nút loại đầu vào có thể là nút gửi hoặc nút đặt lại. Với CSS, chúng ta có thể tạo kiểu cho bất kỳ nút nào trên trang web.

Bạn có thể thử chạy đoạn mã sau để gửi kiểu nhập liệu:

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         input[type = submit] {
            background-color: orange;
            border: none;
            text-decoration: none;
            color: white;
            padding: 20px 20px;
            margin: 20px 20px;
            cursor: pointer;
         }
      </style>
   </head>
   <body>
      <p>Fill the below form,</p>
      <form>
         <label for = "subject">Subject</label>
         <input type = "text" id="subject" name  ="sub"><br><br>
         <label for = "student">Student</label>
         <input type = "text" id = "student" name = "stu"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>