使用IE11在textareas上进行奇怪的文本换行

时间:2015-09-05 03:39:49

标签: html css internet-explorer-11

在IE11 / win7 64上,我注意到一个非常奇怪的模式,与单词在textarea上的包装有关。

示例:

example

http://fiddle.jshell.net/fy2aoz28/1/

在textarea上使用该文本,第二行几乎为空但它有空间至少必须“to:event_name”字符串。

在Chrome上看起来像这样:

chrome example

那么,这里发生了什么,有没有办法迫使所有浏览器采取相同的行为?

1 个答案:

答案 0 :(得分:2)

添加white-space属性。它用于描述如何处理元素内的空白。

textarea{
    width: 300px;
    height: 200px;
    white-space: pre;
}

现在在Chrome和IE中应该看起来一样。这是你的评论小提琴。 http://fiddle.jshell.net/fy2aoz28/2/