如何让div自动根据内容调整宽度
我想创建类似 fieldset
和 label
的效果。
当标题沿边变化时,标题白色背景的宽度保持不变。
如果我可以使 heading
或 div
元素的宽度足以适应其内容,它将给出适当的效果。
如果有任何其他解决方案请告诉我。
I want to create an effect like that of fieldset
and label
.
When the headings change along the side, the width that the white background of the heading remains the same.
If I can make the heading
or div
element to take the width enough to fit its content, it will give the proper effect.
If there is any other solution please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在要缩小的 div 上使用
float
,或display: inline-block
(尽管这在 IE6 中不起作用(因为它应用inline-默认情况下,仅对内联元素进行块
),而不指定宽度。或者,显然,您可以同时使用两者,尽管我不确定为什么您想让浮动块表现得像一样。内联
演示位于 jsbin
You can use
float
on the div you want to shrink, ordisplay: inline-block
(though that won't work in IE6 (since it appliesinline-block
only to elements inline by default) without specifying a width. Or you can use both, obviously. Though I'm not sure why you'd want to make a floated-block act as if it wasinline
.Demo at jsbin
我会推荐这个
I would recommend this