I'm using this code to change the style of a slider, but so far I can't find the way to change the left side:
.slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 2px;
background: #ffffff;
outline: none;
opacity: 0.7;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
}
<div class="slidecontainer">
<input
type="range"
min="1"
max="100"
value="50"
class="slider"
id="myRange"
/>
</div>