Hey there, I am currently facing an issue with the compatibility of a range slider on different browsers. While it works perfectly on Chrome and Safari, Mozilla browser does not seem to support it. I have been trying my best to resolve this problem without any luck so far.
input[type=range]:nth-child(1)::-moz-range-thumb {
background-color: blue;
z-index:999;
}
input[type=range]:nth-child(2)::-moz-range-thumb {
background-color: green;
}
input[type=range]{
position:absolute;
}
<input type="range" min="0" max="100" step="5" value="20"/>
<input type="range" min="0" max="100" step="5" value="90"/>