label の CSS でチェックされてる時の指定

チェックされた radio ボタンに対する label の CSS の書き方を忘れてしまいそうなのでメモ。

input[type="radio"]:checked+label{
   background-color: #afeeee;
}