A pseudo-classe CSS :enabled
representa qualquer elemento ativado. Um elemento é ativado se puder ser ativado (selecionado, clicado, digitado etc.) ou aceitar o foco. O elemento também possui um estado desativado, no qual não pode ser ativado nem aceitar foco.
/* Seleciona qualquer <input> ativado */
input:enabled {
color: blue;
}
Sintaxe
:enabled
BCD tables only load in the browser
O exemplo a seguir torna a cor do texto e do botão <input>
verde quando ativada e cinza quando desativada. Isso ajuda o usuário a entender quais elementos podem ser interagidos..
<form action="url_of_form">
<label for="FirstField">First field (enabled):</label>
<input type="text" id="FirstField" value="Lorem"><br>
<label for="SecondField">Second field (disabled):</label>
<input type="text" id="SecondField" value="Ipsum" disabled="disabled"><br>
<input type="button" value="Submit">
</form>
input:enabled {
color: #2b2;
}
input:disabled {
color: #aaa;
}
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of ':enabled' in that specification. |
Padrão em tempo real | No change. |
HTML5 The definition of ':enabled' in that specification. |
Recomendação | Defines the semantics for HTML and forms. |
Selectors Level 4 The definition of ':enabled' in that specification. |
Rascunho atual | No change. |
CSS Basic User Interface Module Level 3 The definition of ':enabled' in that specification. |
Recomendação | Links to Selectors Level 3. |
Selectors Level 3 The definition of ':enabled' in that specification. |
Recomendação | Defines the pseudo-class, but not the associated semantics. |