Chrome 中的 textarea nowrap 错误?

发布于 2024-11-19 22:43:08 字数 230 浏览 1 评论 0原文

我发现以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

°如果伤别离去 2024-11-26 22:43:08

浏览器对

<textarea name="message" wrap="off"></textarea>

我添加了 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:

<textarea name="message" wrap="off"></textarea>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文