::-moz-range-progress - CSS | MDN
Syntax
css
::-moz-range-progress {
/* ... */
}
Examples
HTML
html
<input type="range" min="0" max="100" step="5" value="50" />
CSS
css
input[type="range"]::-moz-range-progress {
background-color: green;
height: 1em;
}
Result
A progress bar using this style might look something like this:

Specifications
Not part of any standard.
Browser compatibility
See also
-
The pseudo-elements used by Gecko to style other parts of a range input:
::-moz-range-thumbrepresents the indicator that slides in the groove.::-moz-range-trackrepresents the groove in which the thumb slides.
-
CSS-Tricks: Styling Cross-Browser Compatible Range Inputs with CSS