Hi, I want to know how to edit the "-webkit-progress-bar" component, which I have declared as follows:
.form progress::-webkit-progress-value {
background: #1EDC82;
}
And I have it in this part of the code:
<div class="progress">
<p>html 5</p>
<label for="html"></label>
<progress max="100" value="0" id="html"></progress>
</div>
And I want to know how to edit the webkit attribute with javascript, I tried this:
document.getElementById("html").style.webkitBackground = "#FFF";
Thanks for your answers