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