WAIC-TEST-0036-02
CSSによる背景色の適用 (フォーカスされた入力フィールド)
フォーカスを受け取った入力フィールドの背景色が変更される
2.4.7
C15
<form method="post" action="form.php">
<p><label for="fname">名前: </label>
<input class="text" type="text" name="fname" id="fname" />
</p>
<p>
<input type="radio" name="sex" value="male" id="sm" /> <label for="sm">男性</label><br />
<input type="radio" name="sex" value="female" id="sf" /> <label for="sf">女性</label>
<p>
</form>
input.text {
background-color: #000;
color: #7FFF00;
}
input.text:focus {
background-color: #7FFF00;
color: #000;
}
input[type=checkbox] + label, input[type=radio] + label {
background-color: #000;
color: #FF6;
}
input[type=checkbox]:focus + label, input[type=radio]:focus + label {
background-color: #FF6;
color: #000;
}
なし
なし
なし
なし
なし