Posts by Alisson Nunes • 11 points
1 post
-
1
votes2
answers3896
viewsA: Changing the color of a HTML5 <Progress> element
To remove the default appearance: progress { display:block; -webkit-appearance: none; } To set the new background appearance: progress::-webkit-progress-bar { background: black; border-radius: 50px;…