CSS Selector :enabled

Description

Some elements have enabled and disabled states, for example the form elements. :enabled selector selects element in enabled state. The :enabled selectors don't match any element that cannot be disabled.

Example


<!DOCTYPE HTML> 
<html> 
    <head> 
        <style type="text/css"> 
        :enabled { <!--from   ww  w  .  j a  va2s. c om-->
            border: thin red solid; 
            padding: 4px; 
        } 
        </style> 
    </head> 
    <body> 
        <a href="http://java2s.com">Visit the java2s.com</a> 
        <textarea> This is an enabled textarea</textarea> 
        <textarea disabled> This is a disabled textarea</textarea> 
    </body> 
</html>

Click to view the demo

The code above generates the following result.

:enabled




















Home »
  HTML CSS »
    HTML CSS Reference »




HTML Tag Reference
CSS Reference
CSS Selector Reference
Encoding Reference