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

Cách sử dụng CSS:tiêu điểm lớp giả


Bạn có thể thử chạy mã sau để triển khai:focus pseudo-class

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:focus {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>

Đầu ra

Cách sử dụng CSS:tiêu điểm lớp giả