DIV Contenteditable展开问题

发布于 2024-09-09 01:55:56 字数 166 浏览 3 评论 0原文

我有一个将 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 技术交流群。

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

发布评论

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

评论(2

小瓶盖 2024-09-16 01:55:56

如果您设置了绝对高度,浏览器将处理它的绝对高度。
因此,将以下 css 规则应用于您的 div:

#yourdiv {
    height: auto;
    min-height: 150px;
}

If you've set the height absolute the browser will handle it absolute.
So apply the following css rules to your div:

#yourdiv {
    height: auto;
    min-height: 150px;
}
四叶草在未来唯美盛开 2024-09-16 01:55:56

这里有一个例子: 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! :)

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