I have a textarea (in Chrome) defined as:
<textarea style="width:100%; height:500px;"></textarea>
This forces the text area to have those dimensions, which are the preferred dimensions, so that's good.
However if the user wants to drag the resize handle to make that textarea smaller or larger, they can't
If I remove the style all together, then the text area collapses to a small square.
I want to specify the preferred size, but let the user drag it larger or smaller in any direction. Can this be done?