Grow textareas without using a clone or ghost element.
Based off of: https://github.com/javierjulio/textarea-autosize.
<textarea id="content"></textarea>
grow(content);
#content {
box-sizing: border-box;
max-height: 94px; /* optional */
min-height: 31px;
}
$ component install matthewmueller/grow
Initializes a growing textarea
make
MIT