0
Segue Jsfiddle: https://jsfiddle.net/7vaf1th8/15/
Is showing horizontal scroll bar in textarea.
Follow the image:
Some solution ?
0
Segue Jsfiddle: https://jsfiddle.net/7vaf1th8/15/
Is showing horizontal scroll bar in textarea.
Follow the image:
Some solution ?
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 html5 twitter-bootstrap
You are not signed in. Login or sign up in order to post.
The Fiddle is normal.
– Sam
I went up and down and nothing came up :/
– Sam
Here does not appear this scroll.
– Sam
Anyway you can force putting the CSS
overflow-x: hidden;
in the textarea– Sam