How to add an image to a label in CSS?
<div class="person_pic"> <label>Please upload your photo</label> <input type='file' name="image" onchange="readURL(this);" /> <img id="blah" src="#" alt="your image" /> </div>
<div class="person_pic"> <label>Please upload your photo</label> <input type='file' name="image" onchange="readURL(this);" /> <img id="blah" src="#" alt="your image" /> </div>