答案 0 :(得分:3)
我会在图片中设置复选框,请参阅小提琴https://jsfiddle.net/0c26tqd7/1/
修改我在小提琴中的复选框上添加了红色边框
<强> HTML 强>
<input type="checkbox" name='thing1' id="thing1"/><label for="thing1"></label>
<强> CSS 强>
input[type=checkbox] {
display:none;
}
input#thing1[type=checkbox] + label
{
background-image: url("http://lorempixel.com/50/50/");
height: 50px;
width: 50px;
display:inline-block;
padding: 0 0 0 0px;
}