Showing scrollbar alone with textarea element

Asked

Viewed 161 times

0

  • The Fiddle is normal.

  • I went up and down and nothing came up :/

  • Here does not appear this scroll.

  • 1

    Anyway you can force putting the CSS overflow-x: hidden; in the textarea

1 answer

1


As stated in the comments, the problem could not be noticed in local tests, however, one solution is to assign the style overflow-x: hidden; at the textarea to prevent such a problem.

Direct inline:

<textarea style="overflow-x: hidden;"></textarea>

Or in the CSS:

textarea{
   overflow-x: hidden;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.