Chrome 中的 textarea nowrap 错误?
我发现以下 css 属性禁用 html 文本区域中的换行。
textarea {
white-space: nowrap;
}
然而,这导致了奇怪的行为。每隔几次刷新,文本区域中的所有换行符似乎都会消失,将所有文本放在一行上。
我正在使用 google chrome 12.0.x
这是一个已知的错误还是更有可能是我在其他地方出现的错误?
I found out that the following css property disables line wrapping in a html textarea.
textarea {
white-space: nowrap;
}
This is however causing a strange behaviour. Every few refreshes, all newlines in the textarea seem to disappear, putting all text on one line.
I'm using google chrome 12.0.x
Is this a known bug or is it more likely to be an error on my part somewhere else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
浏览器对
我添加了
wrap="off"
属性。这似乎没有得到官方支持,但已经使用了很多年。Browser support for
white-space
on<textarea>
is patchy at best. This is not a CSS solution, but it should do the trick:I have added the
wrap="off"
attribute. Which doesn't seem to be officially supported, but has been used happily for a number of years.