gpt4 book ai didi

html - div 中的中心文本,其中有一个 div

转载 作者:太空宇宙 更新时间:2023-11-03 20:59:51 26 4
gpt4 key购买 nike

我有这个代码:

<div style="border:1px solid #afafaf;background-color:#efefef;width:100px;height:14px;">
<div style="text-align:center;width:50px;height:14px;background-color:green;">
50%
</div>
</div>

如果第一个 DIV 和第二个 div 的宽度可能为 0 到 100 像素(进度条),我如何将 50% 放在中间

最佳答案

Live Demo

无论您的进度条有什么宽度,它都不会影响文本 div。

HTML:

<div style="border:1px solid #afafaf;background-color:#efefef;width:100px;height:14px;position:relative">
<div style="text-align:center;width:50px;height:14px;background-color:green;"></div>
<div id="text">50%</div>
</div>

CSS:

#text {
position: absolute;
width: 100%;
top: 0;
left: 0;
text-align: center
}

关于html - div 中的中心文本,其中有一个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5066430/

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