how to add an image to a label in css

Solutions on MaxInterview for how to add an image to a label in css by the best coders in the world

showing results for - "how to add an image to a label in css"
Fabio
31 Jan 2018
1<div class="person_pic">
2    <label>Please upload your photo</label>
3    <input  type='file' name="image" onchange="readURL(this);" />
4    <img id="blah" src="#" alt="your image" />
5    </div>
6
Leanne
15 Feb 2019
1.person_pic {
2 margin-left: 201px;
3display: inline-block;
4font-weight:bold;
5}
6.person_pic label{
7font-weight:bold;
8}
9