Как с помощью анимации сделать переход к height: auto? (js, css, react)
У меня есть код который запускает анимацию heightChanger, но анимировать переход к height: auto через keyframe не получается, как это сделать?
document.getElementById('firstStr'+id).style.animation = '1.5s ease 0s normal both heightChanger'
@keyframes heightChanger{
from {
height: 2.5em
}
to {
height: auto
}
}