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>
I have tried nearly everything, but the value color of the progress bar remains the same. The only browser that is responsive to a change is IE. Firefox allows to change background color only. Chrome doesn't show anything at all. Can you spot what is wrong with my code?
-webkit-appearance
(see css-tricks.com/html5-progress-element/#article-header-id-4) – Twine-moz-progress-bar
? lighcolor=lightblue? But works for me in Firefox. jsfiddle.net/t0znpjht – Palmapalmaceousprogress
(gray color by default), yes? – Hodmanbackground: lightblue;
works in Chrome. Do you agree with this? – Hodman