Sử dụng công cụ chọn CSS:đã bật để tạo kiểu cho mọi phần tử được bật. Bạn có thể thử chạy mã sau để triển khai:bộ chọn đã bật -
Ví dụ
<!DOCTYPE html> <html> <head> <style> input:enabled { background: blue; } </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" disabled><br> </form> </body> </html>