您可以在< progress>元素通过改变几个浏览器专有选择器的背景.
在Firefox中,您可以使用以下内容:
progress::-moz-progress-bar { background: blue; }
在Chrome或Safari中,您可以使用:
progress::-webkit-progress-value { background: blue; }
在IE10中,您只需要使用颜色属性:
progress { color: blue; }
资料来源:http://html5doctor.com/the-progress-element/