我正在寻找一个跨浏览器解决方案,使textarea的:
- 文本换行只对进入
- 滚动条都隐藏,直到文本溢出
我已经试过几乎所有可以在SO可以找到...
失败#1:
textarea{
white-space:nowrap;
overflow: auto;
}
在FF不工作
失败#2:
textarea{
white-space:nowrap;
overflow: auto; // or scroll
}
+WRAP=OFF attribute
在这里我不能打在IE中输入( 的jsfiddle )
失败#3:
textarea{
white-space:pre;
overflow: auto;
}
+WRAP=OFF attribute
在IE的自动换行,如果我到达终点