チェックボックスを画像に変更する
■html
<input type="checkbox" id="check"> <label for="check">checkbox</label>
■css
input[type="checkbox"] + label {
display: block;
background-image: url(../images/bg_checkbox_off.png);
background-size: 24px;
background-position: 10px center;
background-repeat: no-repeat;
padding: 4px 0 0 45px;
}
input[type="checkbox"]:checked + label {
background-image: url(../images/bg_checkbox_on.png);
}
-
前の記事
スマートフォン縦横向き変更時の文字サイズを自動調整する機能を無効化 2016.10.24
-
次の記事
dlリストでdtをddの上下に対して中央揃えにする 2016.10.24