Google 地图 - 如何使 div 展开以包含其内容
我正在尝试创建一个自定义叠加层,它基本上只包含一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 div 的空白属性设置为 nowrap
you can set white-space property of your div to nowrap