Pattern:
:disabled
Definition:
The :disabled pseudo-class matches user interface elements that are in a disabled state (not able to accept user input).
Examples:
Style all <input> elements that are in a disabled state.
1 | input:disabled { background-color : sienna; } |
Please login to continue.