I have a textarea in a td element. Currently, when the text area is resized to a width beyond the width of the td element, the entire table resizes to keep the textarea element within the td.
Is there a way to allow the textarea to resize beyond the containing td?
You can add a
divwith fixed size inside the td around the textarea:http://jsfiddle.net/kvKZu/4/
(reposting comment as answer)