gpt4 book ai didi

html - 将 div 设置为其包含文本的宽度?

转载 作者:太空狗 更新时间:2023-10-29 12:25:11 24 4
gpt4 key购买 nike

我有一个 div 类 heading,其中包含动态生成的文本,我想使用 border-bottom 为其添加下划线。但是如果我设置 .heading {width:auto} 然后 div 水平填充它的容器,下划线太长了。

如何使 div 与包含的文本一样长?

http://jsfiddle.net/roLxsw3v/

最佳答案

Visual formatting model - 'Inline-block', non-replaced elements in normal flow:

If width is auto, the used value is the shrink-to-fit width as for floating elements.

A computed value of auto for margin-left or margin-right becomes a used value of 0.

因此您可以将元素的显示更改为inline-block

这样做时,元素的宽度将为 "shrink to fit"它的内容,在本例中是文本。

Updated Example

.heading {
background: blue;
display: inline-block;
}
<div class="heading">text</div>

还值得指出的是,您可以省略 width: auto,因为 auto 已经是默认值。

显然,您还可以将元素的类型从 div 更改为 span,默认情况下为 inline

关于html - 将 div 设置为其包含文本的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28665119/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com