how can I change the fill of tag <progress> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how can I change the fill of tag <progress>

I try use background-color and color

23rd Jul 2018, 12:58 PM
Ω-mega
Ω-mega - avatar
1 Answer
+ 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; }
23rd Jul 2018, 1:22 PM
ihateonions