How to enable HTML TextArea auto width resizing?

autoresize, html, textarea, width

Solution

Sure. For example like this

HTML

<textarea id="flex">Test text</textarea>

CSS

#flex { width: 80% }

Problem

Is it possible to have a HTML TextArea automatically resize its width with the browser window width (I mean dynamically)?

Original source