accent-color
accent-color プロパティは、チェックボックス、ラジオボタン等のインターフェイス要素に強調色を設定します。
プロパティの詳細
- 値
- <color>, auto
- 初期値
- auto
- 対象
-
<input type="checkbox">
<input type="radio">
<input type="range">
<progress>
- 継承
- する
- CSS レベル
- CSS Basic User Interface Module Level 4
値
- <color>
- 強調色として使用したい色を指定します。
- auto
- ブラウザのデフォルト設定が使用されます。
サンプル
html
<input type="checkbox" checked />
<input type="range" value="50" />
CSS
input {
accent-color: blue;
}