Home >Web Front-end >JS Tutorial >How to solve the bug of textarea not wrapping in IE11

How to solve the bug of textarea not wrapping in IE11

php中世界最好的语言
php中世界最好的语言Original
2018-03-09 15:26:493562browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn