(Sample)
ポイントは以下の部分です。
label:hover
label:hover
は、ユーザーがマウスポインタをラベル要素 (<label>
) の上に置いたときに適用されるCSSの疑似クラスです。
ホバー中のラベルのスタイル(色、背景色、フォントサイズなど)を変更できます。
ユーザーのインタラクションに応じた視覚的なフィードバックを提供しています。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>label.html/</title>
<style>
label:hover {
background-color: lightcyan;
}
</style>
</head>
<body>
<form>
<input type="radio" value="1" name="r" id="1"><label for="1">ラジオボタン1のラベル</label><br>
<input type="radio" value="2" name="r" id="2"><label for="2">ラジオボタン2のラベル</label><br>
<input type="radio" value="3" name="r" id="3"><label for="3">ラジオボタン3のラベル</label><br>
</form>
</body>
</html>