html - How do I get rid of the vertical scrollbar of a textarea in IE? -
There is a dirty right-in-turn scrollbar in textarea in IE, textarea is cleaned in FF, how to clean it in IE ?
Quick use shows that IE6 and IE8 (unable to test) 7 this time) both Respect auto value for overflow Thus, to appear when scroll bars are required, but when not hidden, add the following style rule:
textarea {overflow: auto; }
Comments
Post a Comment