我需要一个可以选择图片的表单,我已经在google上搜索过了,我尝试使用select选项,但是这不起作用。
你能想出解决这个问题的办法吗?
我在用波旁威士忌和纯威士忌(sass)
html - 如何用表格制作选择图像-LMLPHP

最佳答案

我会将复选框设置为图像,请参见fiddlehttps://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;
}

07-27 13:50