ใช้ CSS :required selector เพื่อจัดรูปแบบ <input> องค์ประกอบที่มีแอตทริบิวต์ "จำเป็น" คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :required selector:
ตัวอย่าง
<!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>