CSS :enabled Selector

Set a background color for all enabled <input> elements of type="text"

Definition and Usage

The :enabled selector matches every enabled element (mostly used on form elements).

Version: CSS3

Browser Support

The numbers in the table specifies the first browser version that fully supports the selector.

Selector
:enabled 4.0 9.0 3.5 3.2 9.6

CSS Syntax

:enabled {
  css declarations;
} Demo

More Examples

Example

Set a background color for all enabled <input> elements:

input:enabled {
  background: #ffff00;
}

Related Pages

CSS Selector Reference: CSS :checked selector

CSS Selector Reference: CSS :disabled selector