Showing scroll bar alone with textarea element

0

Follow JSFiddle: link

You are showing horizontal scroll bar in textarea.

Here is the image:

Any solution?

    
asked by anonymous 01.11.2017 / 15:13

1 answer

1

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

Direct inline :

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

Or in CSS:

textarea{
   overflow-x: hidden;
}
    
01.11.2017 / 15:55