I made a floating label for input as shown below. And it works great. But when I remove the required input field, the floating label doesn't work (although I don't need required ). Please suggest some ways to solve this problem.
input:focus~.floating-label, input:not(:focus):valid~.floating-label { top: 6px; bottom: 12px; left: 20px; font-size: 11px; opacity: 1; } .floating-label { position: absolute; pointer-events: none; left: 20px; top: 18px; text-transform: uppercase; transition: 0.2s ease all; color: #b2b2b2; }
<input type="text" id="floating_name" value="" required/> <span class="floating-label">Enter</span>
source share