Để tạo kiểu cho mọi phần tử bị vô hiệu, hãy sử dụng bộ chọn CSS:đã tắt. Bạn có thể thử chạy đoạn mã sau để tạo kiểu cho phần tử bị vô hiệu hóa -
Ví dụ
<!DOCTYPE html> <html> <head> <style> input:enabled { background: blue; } input:disabled { background: red; } </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>