CSS :disabled Selector


Example

Set a background color for all disabled input elements of type="text":

input[type="text"]:disabled {
  background: #dddddd;
}
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The :disabled selector matches every disabled 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
:disabled 4.0 9.0 3.5 3.2 9.6

CSS Syntax

:disabled {
  css declarations;
} Demo


More Examples

Example

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

input:disabled {
  background: #dddddd;
}
Try it Yourself »

Example

Set a background color for all disabled <option> elements:

option:disabled {
  background: red;
}
Try it Yourself »

Related Pages

CSS Selector Reference: CSS :checked selector

CSS Selector Reference: CSS :enabled selector


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.