I create a slider with two handlers to ensure that I put one range of the input type on top of the other, the slider works fine, but there is a strange line on it, and I canβt understand what it is:

HTML:
<section data-range-slider class="range-slider" ng-model="range" min="0" max="max"> <input list="numbers" type="range" ng-change="_which = 0" ng-model="_model[0]" min="0" max="1800" step="1" > <input type="range" ng-change="_which = 1" ng-model="_model[1]" min="0" max="1800" step="1"> </section>
SASS:
section.range-slider overflow: hidden position: relative width: 200px height: 35px input pointer-events: none position: absolute overflow: hidden left: 0 top: 0 width: 200px outline: none height: 18px &::-webkit-slider-thumb pointer-events: all position: relative z-index: 1 outline: 0 &::-moz-range-thumb pointer-events: all position: relative z-index: 10 -moz-appearance: none background: linear-gradient(to bottom,
Is this line a pseudo-element or something like an input element = "range"? How to remove it?
source share