Remove Vertical TextArea Scollbar in IE


/ Published in: CSS
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. textarea{
  2. overflow:auto;
  3. }

Report this snippet


Comments


You need to login to view comments.