H-I
This is my input
.centered-name
{
width: 80%;
margin: auto;
}
.group {
width: 100%;
overflow: hidden;
position: relative;
}
.label {
position: absolute;
top: 40px;
color: #666666;
font: 400 26px Roboto;
cursor: text;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.input {
display: block;
width: 100%;
padding-top: 36px;
border: none;
border-radius: 0;
font-size: 30px;
transition: .3s ease;
text-align: center;
}
.input:valid ~ .label
{
top: 3px;
font: 400 26px Roboto;
}
.input:focus {
outline: none;
}
.input:focus ~ .label {
top: 3px;
font: 400 26px Roboto;
}
.input:focus ~ .bar:before {
transform: translateX(0);
}
.bar {
border-bottom: 2px solid #ff5126;
width: 100%;
margin-top: 6px;
transition: .3s ease;
}
.input:valid ~ .bar
{
border-bottom: 2px solid #3bb873;
}
<div class="centered-name">
<div class="group">
<input type="text" minlength="5" dir="rtl" class="input res" id="name" required autocomplete="off" />
<label class="label res" for="name">Name</label>
<div class="bar"></div>
</div>
</div>
When the input is invalid (less than 5 characters) and you focus out, the label moves down
I also tried
.input:invalid ~ .label
{
top: 3px;
font: 400 26px Roboto;
}
.centered-name
{
width: 80%;
margin: auto;
}
.group {
width: 100%;
overflow: hidden;
position: relative;
}
.label {
position: absolute;
top: 40px;
color: #666666;
font: 400 26px Roboto;
cursor: text;
transition: 0.3s ease;
width: 100%;
text-align: center;
}
.input {
display: block;
width: 100%;
padding-top: 36px;
border: none;
border-radius: 0;
font-size: 30px;
transition: .3s ease;
text-align: center;
}
.input:valid ~ .label
{
top: 3px;
font: 400 26px Roboto;
}
.input:invalid ~ .label
{
top: 3px;
font: 400 26px Roboto;
}
.input:focus {
outline: none;
}
.input:focus ~ .label {
top: 3px;
font: 400 26px Roboto;
}
.input:focus ~ .bar:before {
transform: translateX(0);
}
.bar {
border-bottom: 2px solid #ff5126;
width: 100%;
margin-top: 6px;
transition: .3s ease;
}
.input:valid ~ .bar
{
border-bottom: 2px solid #3bb873;
}
<div class="centered-name">
<div class="group">
<input type="text" minlength="5" dir="rtl" class="input res" id="name" required autocomplete="off" />
<label class="label res" for="name">Name</label>
<div class="bar"></div>
</div>
</div>
However, the label rises before any input is entered
How can we make the input invalid after typing a single letter?