gpt4 book ai didi

html - 从右到左增加进度条宽度

转载 作者:太空宇宙 更新时间:2023-11-03 23:36:14 27 4
gpt4 key购买 nike

我有一个进度条,当我增加它的宽度时,它会从左到右移动。就像 0% 它在我的栏的左边,100% 它在我的栏的最右边。

我想知道是否有任何方法可以使我的进度条从右向左“增长”。类似于“-100%”。

这是我的 html 代码:

<div class="completion-bar1-wraper">
<div class="completion-bar1"></div>
</div>

和CSS:

div.completion-bar1-wraper{
height: 12px;
border: 1px solid #aaa;
border-radius: 7px;
background: #eee;
box-shadow: 0px 0px 5px 0px #C2C2C2 inset;
margin-right: 4%;
margin-left: 3%;
margin-top: 19%;
}
div.completion-bar1{
height: 8px;
margin: 1px;
border-radius: 7px;
background: #cf7400;
width: 70%;
}

我也用我的酒吧设置了一个 fiddle :Progress Bar

最佳答案

您可以通过定位轻松做到这一点。将容器设置为 position: relative;,绝对定位进度条,然后指定 right: 0; 使其靠在容器的右边缘。

div.completion-bar1-wraper {
/*...*/
position: relative;
}

div.completion-bar1 {
/*...*/
width: 70%;
position: absolute;
right: 0;
}

这是一个fiddle .

关于html - 从右到左增加进度条宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24000526/

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