как стилизовать input таким образом?
Ответы (1 шт):
Автор решения: Andrey Fedorov
→ Ссылка
body {
font-family: sans-serif;
}
fieldset {
border-radius: .5rem;
border-color: #fcfcfc;
padding-top: .2rem;
}
legend {
transform: translateY(-.3rem);
padding: 0 .5rem;
}
input {
width: 100%;
border: none;
outline: none;
}
fieldset:focus-within {
border-color: #08f;
}
<fieldset>
<legend>Комментарий</legend>
<input type="text">
</fieldset>
