I'm trying to move the label to above the input field when I focus, but it gets hidden instead.
label > span::focus {
top: -20px;
font-size: 15px;
color: blue;
}
Complete Html & CSS code.
Update:
I figured it out, I just change some HTML classes and things to this:
.user-input:focus + .user-label > span {
margin-top: -15px;
font-size: 10px;
color: blue;