DIV Contenteditable展开问题
我有一个将 contenteditable 设置为 true 的 div 作为文本输入。 现在,通常情况下,当某些文本到达 div 的末尾时,它会扩展,但如果我调整 div 的大小,这种情况就会停止发生。浏览器不再这样做。我尝试将其大小调整为自动后设置高度,但也没有帮助。
请帮我解决这一问题。 谢谢。
I have a div with contenteditable set to true to act as a text input.
Now usually, it expands as some text reaches the end of the div, but if I resize the div, this stops happening. The browser no more does this. I tried to set the height after resizing it to auto, but it didn't help either.
Please help me on that one.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您设置了绝对高度,浏览器将处理它的绝对高度。
因此,将以下 css 规则应用于您的 div:
If you've set the height absolute the browser will handle it absolute.
So apply the following css rules to your div:
这里有一个例子: http://html5demos.com/contenteditable 使用 chrome 或 firebug 查看它的源代码。
这一切都围绕着宽度、高度和溢出。您还应该小心自动换行属性。一探究竟! :)
Here you have an example: http://html5demos.com/contenteditable look at it's source code with chrome or firebug.
It all goes around the width, height, and overflow. You should also be carefull with the word-wrap property. Check it out! :)