Answers for "how to add an image to a label in css"

CSS
0

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>
Posted by: Guest on August-20-2021
0

how to add an image to a label in css

.person_pic {
 margin-left: 201px;
display: inline-block;
font-weight:bold;
}
.person_pic label{
font-weight:bold;
}
Posted by: Guest on August-20-2021

Code answers related to "how to add an image to a label in css"

Browse Popular Code Answers by Language