Textarea:Opera 中的问题——文本没有换行到下一行?
我不想要滚动条,因此我给出了overflow:hidden
。
一个简单的文本区域:
<textarea cols=10 rows=2 style='overflow:hidden' ></textarea>
在 Opera 浏览器中打开时 - 当输入的文本超过列长度时,无法将输入的文本换行到下一行(在所有其他浏览器中,文本会换行到下一行 - FF、Chrome、Safari)
I do not want the scroll bars,hence i've given overflow:hidden
.
A simple text area:
<textarea cols=10 rows=2 style='overflow:hidden' ></textarea>
when opened in Opera Browser -- fails to wrap the entered text onto the next line when the entered text exceeds the column length (Text gets wrapped onto the next line in every other browser -- FF,Chrome,Safari)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 HTML4 规范:
没有要求它必须换行。
并来自 HTML5 规范:
所以也许你是对的,尽管我不知道如何严格来说,这个定义中有一个“应该”。
但在这两种情况下,这可能都是设计使然。
from the HTML4 spec:
there is no required there that it must wrap.
and from the HTML5 spec:
So maybe there you could be right, although I don't know how strict a "should" is in this definition.
But in both cases it's probably by design.