【发布时间】:2013-01-21 16:41:59
【问题描述】:
我正在寻找一种跨浏览器解决方案 文本区域:
- 仅在输入时换行
- 滚动条都隐藏,直到文本溢出
我已经尝试了几乎所有可以在 SO 中找到的东西......
失败#1:
textarea{
white-space:nowrap;
overflow: auto;
}
在 FF 中不起作用
失败#2:
textarea{
white-space:nowrap;
overflow: auto; // or scroll
}
+WRAP=OFF attribute
这里我无法在 IE 中按 Enter (jsFiddle)
失败#3:
textarea{
white-space:pre;
overflow: auto;
}
+WRAP=OFF attribute
如果我到达末尾,在 IE 中自动换行
【问题讨论】:
-
@oshikryu 点在您的私人网站上。在这里,我们希望看到简短的问题 - 简短的回答。我们不希望这里有成堆的垃圾。
标签: css html cross-browser textarea