หากต้องการกำหนดสไตล์ทุกองค์ประกอบ ที่เลือก ให้ใช้ CSS :checked selector คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :checked selector -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <style> input:checked { height: 20px; width: 20px; } </style> </head> <body> <p>Fav sports:</p> <form action=""> <input type = "checkbox" value = "Football">Football<br> <input type = "checkbox" value = "Cricket">Cricket<br> <input type = "checkbox" checked = "checked" value = "Tennis"> Tennis<br> <input type = "checkbox" value = "Badminton">Tennis </form> </body> </html>
ผลลัพธ์