Код: Выделить всё
Your Name
Your Email
Submit
< /code>
И это код CSS, отвечающий за анимирование плавающих меток: < /p>
.floating-label{
position: relative;
margin-bottom: 30px;
}
.floating-label:last-child{
margin-bottom: 0;
}
.floating-label label{
position: absolute;
top: 50%;
left: 15px;
transform: translateY(-50%);
font-size: 16px;
padding: 0 5px;
pointer-events: none;
transition: all 0.3s ease;
color: I need to color this with the browsers default placeholder color;
background-color: transparent;
}
.floating-label input:focus,
.floating-label input:not(:placeholder-shown){
outline: none;
}
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label{
top: 0;
font-size: 12px;
background-color: var(--page-bg);
padding: 0 5px;
}
.floating-label input::placeholder{
color: transparent;
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... processors