How can I prevent the textarea from stretching beyond its parent DIV element?
I have this textarea inside a table which is inside a DIV and it seems that it causes t
textarea { width: 700px; height: 100px; resize: none; }
assign your required width and height for the textarea and then use. resize: none ; css property which will disable the textarea's stretchable property.