更改bootstrap进度条的背景图像

时间:2015-11-23 00:59:14

标签: html css twitter-bootstrap

我一直在尝试在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>

1 个答案:

答案 0 :(得分:0)

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

避免使用内联样式属性 ,因为它们很难维护代码。