We can't animate height: auto, but we can calculate the height, and shim keyframes by replacing it with the element's scrollHeight before the animation.
height: auto
Optional
await animateTo(this.body, shimKeyframesHeightAuto(keyframes, this.body.scrollHeight), options);this.body.style.height = 'auto'; Copy
await animateTo(this.body, shimKeyframesHeightAuto(keyframes, this.body.scrollHeight), options);this.body.style.height = 'auto';
We can't animate
height: auto
, but we can calculate the height, and shim keyframes by replacing it with the element's scrollHeight before the animation.