I'm looking for a way to display a label on an input field and have a writing cursor show up when hovering over the label. I am not interested in using a placeholder label. Do you have any simple solutions for this? See the code snippet below: JSFiddle: https://jsfiddle.net/cotfry8k/
Snippet:
label {
left: 50px;
position: relative;
cursor: text;
}
label:hover span {
visibility: hidden;
}
<form>
<label><span>Name</span></label>
<input type="text"/>
</form>