While experimenting with a jsfiddle to create an animated progress bar, I stumbled upon something peculiar. I had a single CSS rule applied to the progress
tag:
progress {
border:2px solid #ccc;
}
Prior to adding this CSS rule, the progress bar looked like this:
<progress value="22" max="100">
</progress>
After applying the CSS, it transformed into this:
progress {
border: 2px solid #ccc;
}
<progress value="22" max="100>
</progress>
I'm puzzled as to why such a small modification in the CSS has such a significant impact on the appearance of the progress bar. Specifically, I'm curious about where the unexpected green color is originating from.