gpt4 book ai didi

html - 更改 Bootstrap 进度条的背景图像

转载 作者:行者123 更新时间:2023-11-28 06:49:30 25 4
gpt4 key购买 nike

我一直在尝试在 Bootstrap 中向我的进度条添加背景图像。这可能吗?我的 html 是:

<div class="progress" style="margin-top:3%;">
<div class="progress-bar" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%;
background-image:url(scribble.png);">
<span class="sr-only">70% Complete</span>
</div>
</div>

最佳答案

使用 CSS 修改 .progress.progressBar 类。

<style>
.progress {
margin-top: 3%;
background-color: rgba(32,127,225,.6);
}
.progress-bar {
width: 70%;
background-image:url(scribble.png)
}
</style>

避免内联样式属性,因为它们会使代码维护变得非常困难。

关于html - 更改 Bootstrap 进度条的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33862222/

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