Sử dụng công cụ chọn CSS:Required để tạo kiểu cho các phần tử bằng thuộc tính "bắt buộc".
Ví dụ
Bạn có thể thử chạy mã sau để triển khai:Công cụ chọn bắt buộc
<!DOCTYPE html> <html> <head> <style> input:required { background-color: orange; } </style> </head> <body> <form> Subject: <input type = "text" name = "subject" value = "C++"><br> Student: <input type = "text" name = "student" value = "Amit" required><br> </form> </body> </html>