How to enable HTML TextArea auto width resizing?

Jérôme Verstrynge picture Jérôme Verstrynge · Nov 30, 2012 · Viewed 7.2k times · Source

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

Answer

spliter picture spliter · Nov 30, 2012

Sure. For example like this

HTML

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

CSS

#flex { width: 80% }