progress {
border: none;
width: 400px;
height: 60px;
background: crimson;
}
progress {
color: lightblue;
}
progress::-webkit-progress-value {
background: lightblue;
}
progress::-moz-progress-bar {
background: lightcolor;
}
<div>
<progress min="0" max="100" value="63" />
</div>
ほぼすべてを試しましたが、進行状況バーの値の色は同じです。変更に応答する唯一のブラウザはIEです。 Firefoxでは、背景色のみを変更できます。 Chrome何も表示されません。私のコードの何が問題なのか見つけられますか?
progress {
border: none;
width: 400px;
height: 60px;
background: crimson;
}
progress {
color: lightblue;
}
progress::-webkit-progress-value {
background: lightblue;
}
progress::-moz-progress-bar {
background: lightcolor;
}
progress::-webkit-progress-value {
background: red;
}
progress::-webkit-progress-bar {
background: blue;
}
It will work on webkit browser, like this example
<div>
<progress min="0" max="100" value="63" />
</div>
できることはかなり限られていますが、これでうまくいくはずです
progress {
-webkit-appearance: none;
}
progress::-webkit-progress-bar-value {
-webkit-appearance: none;
background: orangered;
}