This time I will show you how to solve the BUG of textarea not wrapping in IE11. We know that textarea does not wrap when the content exceeds the text box under IE11. So, how to solve the BUG of textarea not wrapping in IE11Note What are the matters?
The following is a practical case, let’s take a look.
textarea{ white-space:pre-wrap; /* css3.0 */ white-space:-moz-pre-wrap; /* Firefox */ white-space:-o-pre-wrap; /* Opera 7 */ word-wrap:break-word; /* Internet Explorer 5.5+ */}
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!
Related reading:
The principle and implementation of jquery’s lazy loading
A lazy loading component based on jquery
How to customize user settings in WebStorm
The above is the detailed content of How to solve the bug of textarea not wrapping in IE11. For more information, please follow other related articles on the PHP Chinese website!