Role of CSS :checked Selector


Use the CSS :checked selector to style every checked <input> element. You can try to run the following code to implement the :checked selector:

Example

Live Demo

<!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>

Output

Updated on: 22-Jun-2020

130 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements