This page is part of the CSS3.info CSS selectors test. See more info on CSS3 selectors.

  1. :checked {
    }
    
    <input type='checkbox' checked>

    The CSS selector should match, because the checkbox element is checked

  2. :checked {
    }
    
    <input type='checkbox'>

    The CSS selector should match, because the checkbox element is not checked by default