--- title: ':disabled' slug: 'Web/CSS/:disabled' tags: - CSS - Layout - Pseudo-class - Reference - Web translation_of: 'Web/CSS/:disabled' ---
{{CSSRef}}

CSS :disabled 의사 클래스는 모든 비활성 요소를 나타냅니다. 비활성 요소란 활성(선택, 클릭, 입력 등등)하거나 포커스를 받을 수 없는 요소를 말합니다. 반대 상태인 활성 요소도 존재합니다.

/* 모든 비활성 <input> 선택 */
input:disabled {
  background: #ccc;
}

구문

{{csssyntax}}

예제

다음 예제는 사용자가 청구 주소 입력 칸을 켜거나 끌 수 있는 기능을 JavaScript {{event("change")}} 이벤트를 통해 구현한 기본적인 배송 양식입니다.

HTML

<form action="#">
  <fieldset id="shipping">
    <legend>배송지</legend>
    <input type="text" placeholder="이름">
    <input type="text" placeholder="주소">
    <input type="text" placeholder="우편번호">
  </fieldset>
  <br>
  <fieldset id="billing">
    <legend>청구지</legend>
    <label for="billing-checkbox">배송지와 동일:</label>
    <input type="checkbox" id="billing-checkbox" checked>
    <br>
    <input type="text" placeholder="이름" disabled>
    <input type="text" placeholder="주소" disabled>
    <input type="text" placeholder="우편번호" disabled>
  </fieldset>
</form>

CSS

input[type="text"]:disabled {
  background: #ccc;
}

JavaScript

// 페이지 로딩이 끝날 때까지 기다림
document.addEventListener('DOMContentLoaded', function () {
  // `change` 이벤츠 수신기를 체크박스에 부착
  document.getElementById('billing-checkbox').onchange = toggleBilling;
}, false);

function toggleBilling() {
  // 청구지 텍스트 입력 칸을 모두 선택
  var billingItems = document.querySelectorAll('#billing input[type="text"]');

  // 하나씩 토글
  for (var i = 0; i < billingItems.length; i++) {
    billingItems[i].disabled = !billingItems[i].disabled;
  }
}

결과

{{EmbedLiveSample('예제', 300, 250)}}

명세

Specification Status Comment
{{SpecName('HTML WHATWG', '#selector-disabled', ':disabled')}} {{Spec2('HTML WHATWG')}} No change.
{{SpecName('HTML5 W3C', '#selector-disabled', ':disabled')}} {{Spec2('HTML5 W3C')}} Defines the semantics of HTML and forms.
{{SpecName('CSS4 Selectors', '#enableddisabled', ':disabled')}} {{Spec2('CSS4 Selectors')}} No change.
{{SpecName('CSS3 Selectors', '#enableddisabled', ':disabled')}} {{Spec2('CSS3 Selectors')}} Defines the pseudo-class, but not the associated semantics.

브라우저 호환성

{{Compat("css.selectors.disabled")}}

같이 보기