Google 地图 - 如何使 div 展开以包含其内容

发布于 2024-12-18 22:30:54 字数 189 浏览 0 评论 0原文

我正在尝试创建一个自定义叠加层,它基本上只包含一个 HTML 元素(在本例中为 div),其中包含文本。叠加得到 渲染正常,但文本是多行的,我希望它是一行。使用 Firebug 查看 DOM,我可以看到 div 父级的计算宽度是 44px, 这就是为什么它无法在一行中展开和呈现文本的原因。有什么方法可以在不事先知道 div 所需宽度是多少的情况下纠正这个问题吗?

I'm trying to create a custom overlay that basically just contains a
HTML element (a div in this case) with text in it. The overlay gets
rendered ok but the text is multiline, where I would like it to be one line. Looking into the DOM with Firebug I can see that the computed width for the div parent is 44px,
which is why it can't expand and render the text in one line. Is there any way I can correct this without knowing in advance what the required width for the div is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我是有多爱你 2024-12-25 22:30:54

您可以将 div 的空白属性设置为 nowrap

div.x { white-space:nowrap; }

you can set white-space property of your div to nowrap

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