如何更改HTML中进度条值的颜色?

时间:2017-08-04 13:20:53

标签: html css html5 progress-bar



progress {
  border: none;
  width: 400px;
  height: 60px;
  background: crimson;
}

progress {
  color: lightblue;
}

progress::-webkit-progress-value {
  background: lightblue;
}

progress::-moz-progress-bar {
  background: lightcolor;
}

<div>
  <progress min="0" max="100" value="63" />
</div>
&#13;
&#13;
&#13;

我几乎尝试了所有内容,但进度条的值颜色保持不变。唯一能够响应变化的浏览器是IE。 Firefox允许仅更改背景颜色。 Chrome根本没有显示任何内容。你能发现我的代码有什么问题吗?

2 个答案:

答案 0 :(得分:11)

progress {
  border: none;
  width: 400px;
  height: 60px;
  background: crimson;
}

progress {
  color: lightblue;
}

progress::-webkit-progress-value {
  background: lightblue;
}

progress::-moz-progress-bar {
  background: lightcolor;
}

progress::-webkit-progress-value {
  background: red;
}

progress::-webkit-progress-bar {
  background: blue;
}
It will work on webkit browser, like this example

<div>
  <progress min="0" max="100" value="63" />
</div>

答案 1 :(得分:0)

关于您可以进行的注册非常有限,但这必须达到目的

progress {
   -webkit-appearance: none;
}
progress::-webkit-progress-bar-value {
  -webkit-appearance: none;
  background: orangered;
}