【问题标题】:Change background image of bootstrap progress bar更改引导进度条的背景图像
【发布时间】:2015-11-23 00:59:13
【问题描述】:

我一直在尝试在引导程序中向我的进度条添加背景图像。这可能吗?我的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>

【问题讨论】:

标签: html css twitter-bootstrap


【解决方案1】:

使用 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>

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

【讨论】:

  • 对不起,我的错。我有错误的代码。再检查一遍。我想将背景图像更改为 scribble.png
  • .progressBar 应该是.progress-bar
猜你喜欢
  • 2014-06-02
  • 1970-01-01
  • 2016-04-27
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-01-20
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多