DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit!
The :disabled
pseudo-class selector provides conditional styling to HTML elements that can receive user input, when the elements have the disabled
attribute. It is defined in the CSS Selectors Level 3 spec as a “UI element state pseudo-class”, meaning it is used to style content based on the user’s interaction with an input element.
Elements that can receive the disabled
attribute include <button>
, <input>
, <textarea>
, <optgroup>
, <option>
and <fieldset>
. There are two valid syntaxes for setting this attribute: either disabled="disabled"
or (in HTML5) simply the disabled
Boolean keyword. An element is disabled if it can’t be activated (e.g. selected, clicked on or accept text input) or accept focus.
Such an element can be styled using the :disabled
pseudo-class selector:
Check out this Pen!
Points of Interest
:disabled
can be “chained” with other pseudo-selectors: like:before
or:after
to generate icons or text to provide more user feedback.- Any property that can be animated with CSS Transitions or Animations will be properly animated when the
disabled
attribute is added or removed from the HTML element.
Related Properties
Other Resources
Browser Support
Chrome | Safari | Firefox | Opera | IE | Android | iOS |
---|---|---|---|---|---|---|
All | 3.1 | All | 9 | 9 | All | All |
There is no description about this?
Yes
Hi,
I would like to change the text color of disabled control select(dropdown list). Specially for ie 10 and 11. how can i do that..The one text color should be in red in below code.
sample code
One
Two
Three
fdghfdg
ssss
Hola vengo a comentar. Bueno chau
This isn’t working in my angular app that has ng-disabled set, fwiw
Seems to work fine for my angular application, for example:
select option:disabled { background-color:#ddd; }
Note that the
:before
and:after
pseudo classes will not work on an<input/>
because it is a self closing tag and cannot contain other element (even pseudo ones).for example…
.myclass:disabled { background-color:#7c6a58; }