Is there a way to align the img tag with the file upload input without using position:absolute, since it doesn't work well in responsive design? Are there any text-align/align-items/justify-content properties that can help align them?
.input-file{
padding:6px 10px;border:1px solid #d9d9d9; border-radius:8px;
}
<div>
<input class="input-file" type="file"/>
<img style="width:100px;height:100px;"/>
</div>