gpt4 book ai didi

html - 如何根据div中的文本调整div的大小

转载 作者:行者123 更新时间:2023-11-27 23:24:51 25 4
gpt4 key购买 nike

我有不同的 div,看起来像这样:

<div class="marker marker-availability" style="left: 975.516px; top: 346.265px;">
<span class="marker-label">Tenten comfort</span>
<div style="background-color:#7ba1bc" class="cluster-background">
<span class="marker-id">81</span>
</div>
</div>

<div class="marker marker-availability">
<span class="marker-label">Standaard kampeerplaatsen</span>
<div style="background-color:#d99200" class="cluster-background">
<span class="marker-id">81</span>
</div>
</div>

但现在我遇到了一个问题,因为我在图像底部设置了一个 :after,如下所示:

enter image description here

现在您已经很清楚地看到问题了,我尝试将 height 设置为 auto 并设置 min-height 但这不会解决问题。

我重新创建了一个 jsfiddle:jsfiddle

这是我的 less 代码:

&.marker-availability {
display: block;
width: 120px;
height: 23px;
color: #fff;
background-color: #6f6926;
border: 2px solid #fff;
border-radius: 2px;
margin-left: -60px;
margin-top: -26px;

.marker-label {
margin-top: 1px;
margin-left: 1px;
font-size: 12px;
font-weight: 500;
color: #fff;
}

.cluster-background {
.square(25px);
background-color: black;
color: #fff;
margin-top: -30px;
margin-left: -12px;
border-radius: 50%;


&:after {
.retina-image('/img/map/clustermarker-point.png', '/img/map/clustermarker-pointx2.png', 184px, 55px);
.pos-b-l(-26px, 50%);
.translate(-50%, -50%);
content: "";
display: block;
width: 120px;
height: 20px;
background-repeat: no-repeat;
}
}

.marker-id {
padding-top: 1px;
padding-left: 1px;
font-size: 15px;
}
}

因此,我的问题是可以让它看起来像这样:

enter image description here

或者是因为 :after image 的位置不可能

最佳答案

问题主要出在您的负利润率上,应尽可能避免。

我已经更新了你的例子,你只需要调整填充:

https://jsfiddle.net/txsv0ha5/

删除:

    margin-top: -30px;
margin-left: -12px;

此外,您的底部背景不应是彩色圆圈的 :after 元素,而应是整个标记本身。

关于html - 如何根据div中的文本调整div的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39125326/

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