Reputation: 3941
The form fields have width applied to them through CSS but when I hover over the textarea it resizes it width-wise to a completely different size.
Upvotes: 1
Views: 238
Reputation: 3941
Make sure that the "cols" attribute is not present.
Wrong:
<textarea id="some" cols="20"></textarea>
Correct:
<textarea id="some"></textarea>
Upvotes: 3