how can I change the fill of tag <progress> | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
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 Resposta
+ 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