将按钮变成图片

1
2
3
4
5
6
7
<div class="image-upload">
<label for="file-input">
<img src="placeholder.jpg"/>
</label>

<input id="file-input" type="file"/>
</div>

With styling:

1
2
3
4
.image-upload > input
{
display: none;
}