JSFiddle - React, Tailwind, and code Playground

by Karmalakas

HTML

<form onkeydown="event.preventDefault(); console.log('keyDown');">
    <input type="text" />
</form>

CSS

form {
    --height: 1em;
    
    background: grey;
    height: max(var(--height), 10em);
}