Remove Default Textarea Scrollbars in Internet Explorer

Have you ever noticed that Internet Explorer, with its great wisdom and intelligence, likes to add a useless scrollbar to the side of every HTML textarea? Most browsers add one when it is needed, but IE adds it in right away.

There’s an easy CSS fix though:

textarea {
   overflow: auto;
}
  • Uma

    Really Helpful to me to address this issue in one minute.

    Thank You!

    :)