.progress::-webkit-progress-bar{
background-color:#d7d7d7;
}
progress::-webkit-progress-value{
background-color:rgb(86,199,99);
or
setCSS background-color or color
It doesn't work at all
Develop games in your browser. Powerful, performant & highly capable.
progress[value]{ -webkit-appearance: none; appearance: none; } progress[value]::-webkit-progress-bar{ background-color: #556; border: 1px solid #000; } progress[value]::-webkit-progress-value{ background-color: blue; }
I used this plugin to load the css.
construct.net/en/make-games/addons/317/css
That beeing said, I always try to avoid having to use dom elements because they have quite a bunch of issues, specifically with browser differences and whatnot. Rather annoying to use.