:enabled

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.

css

/* Seleciona qualquer <input> ativado */
input:enabled {
  color: blue;
}

Sintaxe

Error: could not find syntax for this item

Exemplo

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..

HTML

html

<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>

CSS

css

input:enabled {
  color: #2b2;
}

input:disabled {
  color: #aaa;
}

Result

Specifications

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.

Compatibilidade com navegadores

BCD tables only load in the browser

See also