Follow JSFiddle: link
You are showing horizontal scroll bar in textarea.
Here is the image:
Any solution?
Follow JSFiddle: link
You are showing horizontal scroll bar in textarea.
Here is the image:
Any solution?
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;
}