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

  1. :disabled {
    }
    
    <input type='text' disabled>

    The CSS selector should match, because the input element is disabled

  2. :disabled {
    }
    
    <input type='text'>

    The CSS selector should match, because the input element is enabled by default