gpt4 book ai didi

css - 进度条从父容器外开始

转载 作者:行者123 更新时间:2023-11-28 10:24:50 25 4
gpt4 key购买 nike

您会在最左侧看到小红色。进步从外部开始。它也不采用具有一定边界半径的容器的形状。

.progress-bar {
background: grey;
width: 90%;
height: 10px;
border-radius: 15px;
}
.progress-line {
height: 10px;
border-radius: 15px;
background: red;
height: 10px;
border-radius: 15px;
width: 2px;
}
.upload-percent {
margin-top: 10px;
text-align: center;
}
<div class="progress-bar">
<div class="progress-line">
</div>
<div class="upload-percent">
Uploading... 72%
</div>
</div>

最佳答案

你应该像下面这样使用隐藏在外部 div 上的溢出:

.progress-bar {
background: grey;
width: 90%;
height: 10px;
border-radius: 15px;
overflow: hidden;
}
.progress-line {
height: 10px;
background: red;
border-radius: 15px;
width: 2px;
}
.upload-percent {
margin-top: 10px;
text-align: center;
}
<div class="progress-bar">
<div class="progress-line">
</div>
<div class="upload-percent">
Uploading... 72%
</div>
</div>

关于css - 进度条从父容器外开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55848974/

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