チェックボックスを画像に変更する

チェックボックスを画像に変更する

■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);
}