--- title: ':default' slug: 'Web/CSS/:default' tags: - CSS - CSS 基本ユーザーインターフェイス - Layout - Pseudo-class - Reference - Web - セレクター - 疑似クラス translation_of: 'Web/CSS/:default' ---
{{CSSRef}}

:defaultCSS擬似クラスで、関連する要素のグループ内で既定となっているフォーム上の要素を選択します。

このセレクターが何に一致するかについては、 HTML Standard §4.16.3 Pseudo-classes で定義されています。 — {{htmlelement("button")}}、 <input type="checkbox"><input type="radio">、 {{htmlelement("option")}} 要素に一致させることができます。

構文

{{csssyntax}}

HTML

<fieldset>
  <legend>Favorite season</legend>

  <input type="radio" name="season" id="spring">
  <label for="spring">Spring</label>

  <input type="radio" name="season" id="summer" checked>
  <label for="summer">Summer</label>

  <input type="radio" name="season" id="fall">
  <label for="fall">Fall</label>

  <input type="radio" name="season" id="winter">
  <label for="winter">Winter</label>
</fieldset>

CSS

input:default {
  box-shadow: 0 0 2px 1px coral;
}

input:default + label {
  color: coral;
}

結果

{{EmbedLiveSample("Examples")}}

仕様書

仕様書 状態 備考
{{SpecName('HTML WHATWG', '#selector-default', ':default')}} {{Spec2('HTML WHATWG')}} 変更なし。
{{SpecName('HTML5 W3C', '#selector-default', ':default')}} {{Spec2('HTML5 W3C')}} HTML に関する意味付けと制約検証を定義。
{{SpecName('CSS4 Selectors', '#default-pseudo', ':default')}} {{Spec2('CSS4 Selectors')}} 変更なし。

ブラウザーの互換性

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

関連情報