W3docs

Pseudo-classe CSS :disabled

Use a pseudo-classe CSS :disabled para selecionar e aplicar estilos aos elementos desativados. Saiba mais sobre a pseudo-classe e pratique com os exemplos.

A pseudo-classe :disabled seleciona e aplica estilos a elementos que estão desativados.

 Exemplo da pseudo-classe CSS :disabled

Estes elementos são normalmente elementos de formulário, como botões (<button>), menus de seleção (<select>), tipos de input (<input>) e áreas de texto (<textarea>).

Os elementos desativados não aceitam cliques, introdução de texto nem foco.

Versão

CSS Basic User Interface Module Level 3

Selectors Level 3

Sintaxe

Exemplo de sintaxe CSS :disabled

:disabled {
  css declarations;
}

Exemplo de definição de uma cor de fundo para um elemento <input> desativado:

Exemplo de código CSS :disabled

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      input {
        padding: 2px 5px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
      }
      input[type=text]:enabled {
        background: #eee;
      }
      input[type=text]:disabled {
        background: #ccc;
      }
    </style>
  </head>
  <body>
    <h2>:disabled selector example for input</h2>
    <form action="">
      <label for="name">First name:</label>
      <input type="text" value="John" id="name" />
      <br />
      <label for="lastname">Last name:</label>
      <input type="text" value="Smith" id="lastname" />
      <br />
      <label for="country">Country:</label>
      <input type="text" disabled="disabled" value="10 High Street" id="country" />
    </form>
  </body>
</html>

Exemplo de definição de uma cor de fundo para elementos <option> desativados:

Outro exemplo de código CSS :disabled

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      option:disabled {
        background: #8ebf42;
      }
    </style>
  </head>
  <body>
    <h2>:disabled selector example for option</h2>
    <select>
      <option value="paris">Paris</option>
      <option value="london" disabled>London</option>
      <option value="moscow">Moscow</option>
      <option value="rome" disabled>Rome</option>
      <option value="berlin">Berlin</option>
    </select>
  </body>
</html>

Nota: a pseudo-classe :disabled tem precedência sobre :valid e :invalid. Os elementos de formulário desativados não são validados pelo browser.

Exemplo de um elemento <input> desativado:

Exemplo de elemento input desativado

<!DOCTYPE html>
<html>
  <head>
    <title>Title of the document</title>
    <style>
      input {
        width: 60%;
        margin: 0;
        border: none;
        outline: 1px solid lightgrey;
        outline-offset: 2px;
      }
      input:disabled {
        background: #cccccc;
        cursor: not-allowed;
      }
      form {
        background: #67a6ec;
        padding: 1.5em;
        max-width: 400px;
        width: 100%;
        outline: 10px solid rgba(17, 58, 103, 0.6);
      }
      hr {
        visibility: hidden;
      }
      label {
        margin-right: 3%;
        text-align: left;
        display: inline-block;
        width: 35%;
      }
    </style>
  </head>
  <body>
    <h2>:disabled selector example with styling</h2>
    <form action="#">
      <label for="name">Enabled Input:</label>
      <input type="text" autofocus />
      <hr />
      <label for="name">Disabled Input:</label>
      <input type="text" disabled />
    </form>
  </body>
</html>

Prática

Prática
What are the characteristics of the 'disabled' attribute in CSS?
What are the characteristics of the 'disabled' attribute in CSS?
Was this page helpful?