/ Published in: CSS
IE adds a vertical scrollbar to textarea input fields regardless of the height of content in it. You can fix that with this simple CSS trick.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
textarea{ overflow:auto; }