このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。
:indeterminate
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
:indeterminate はCSS の擬似クラスセレクターで、未確定の状態にあるフォーム要素を表します。例えばチェックボックスで HTML のindeterminate 属性がtrue に設定されたもの、ラジオボタンでグループ内がすべて選択されていないもの、<progress> 要素で中間の状態などです。
css
/* 未確定の状態にある <input> をすべて選択 */input:indeterminate { background: lime;}このセレクターが対象とする要素は以下の通りです。
<input type="checkbox">要素で、JavaScript によってindeterminateプロパティがtrueに設定されている場合<input type="radio">要素で、フォーム内の同じnameの値を持つすべてのラジオボタンが未選択である場合<progress>要素で、中間の状態の場合
In this article
構文
:indeterminate
例
>チェックボックスとラジオボタン
この例では中間の状態にあるフォームの要素に特殊なスタイルを適用します。
HTML
html
<fieldset> <legend>Checkbox</legend> <div> <input type="checkbox" /> <label for="checkbox">This checkbox label starts out lime.</label> </div></fieldset><fieldset> <legend>Radio</legend> <div> <input type="radio" name="radioButton" /> <label for="radio1">First radio label starts out lime.</label> </div> <div> <input type="radio" name="radioButton" /> <label for="radio2">Second radio label also starts out lime.</label> </div></fieldset>CSS
css
input:indeterminate + label { background: lime;}fieldset { padding: 1em 0.75em;}fieldset:first-of-type { margin-bottom: 1.5rem;}fieldset:not(:first-of-type) > div:not(:last-child) { margin-bottom: 0.5rem;}JavaScript
js
const inputs = document.getElementsByTagName("input");for (let i = 0; i < inputs.length; i++) { inputs[i].indeterminate = true;}結果
プログレスバー
HTML
html
<progress></progress>CSS
css
progress { margin: 4px;}progress:indeterminate { width: 80vw; height: 20px;}結果
仕様書
| Specification |
|---|
| HTML> # selector-indeterminate> |
| Selectors Level 4> # indeterminate-pseudo> |
ブラウザーの互換性
関連情報
- ウェブフォーム — ユーザーデータでの作業
- ウェブフォームの整形
<input type="checkbox">要素のindeterminate属性<input>およびそれを実装しているHTMLInputElementインターフェイス:checkedセレクターは、チェックボックスがチェックされているかどうかでスタイル付けすることができます