+ 1
CSS progress bar costumize?
can you costumize progress bars in HTML5 using CSS?
1 Respuesta
+ 5
Yes you can, you can change the width and color and height just like with other tags. Play around with it and see what you can do.
Example (CSS):
progress {
width:100px;
height:20px;
background-color:grey;
color:green;
border: 2px black solid;
}
//You can do more than just this