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