0
how can I change the fill of tag <progress>
I try use background-color and color
1 Réponse
+ 1
progress::-moz-progress-bar { background: blue; }
In Chrome or Safari, you can use:
progress::-webkit-progress-value { background: blue; }
In IE10, you just need to use the color attribute:
progress { color: blue; }