My current project involves implementing a dual slider input range. The HTML code I have written looks like this:
.acCalcInputRange input[type="range"] {
pointer-events: none;
position: absolute;
bottom: 0.6rem;
border: none;
outline: none;
height: 6px;
margin: 0;
padding: 0;
}
//for input thumb
.acCalcInputRange input[type="range"]::-moz-range-thumb {
pointer-events: all;
position: relative;
z-index: 10;
-moz-appearance: none;
width: 15px;
height: 15px;
border: none;
background-color: blue;
cursor: pointer;
}
<div class="acCalcInputRange">
<input type="range" class="form-range input-range" value="30000" id="customRange1" min="10000" max="90000" onchange="HomeInputChange()">
<input type="range" class="form-range input-range" value="70000" id="customRange2" min="10000" max="90000" onchange="HomeInputChange()">
</div>
Despite my efforts, one of the thumbs is not appearing correctly. I have tried various solutions but haven't been able to fix the issue. Can anyone provide assistance in resolving this?
Edit: I aimed to achieve this and successfully implemented it on Chrome https://i.sstatic.net/PC0Zm.png
However, on Firefox, I encountered some issues: https://i.sstatic.net/Qi0Xa.png
If anyone can help, I would greatly appreciate it!