input {
height: 4px;
appearance: none;
width: 100%;
margin: 2px;
border-radius: 8px;
transition: 0.2s ease;
background-color: #5e5e5e;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
/* display: none; */
width: 12px;
height: 12px;
border-radius: 50%;
background-color: green;
}
input[type="range"]:hover {
background: green;
}
input[type="range"]::-webkit-slider-thumb:hover {
background-color: white;
}
<input type="range" />
I've been working on cloning Spotify web page(https://open.spotify.com), but stuck in making the progress bar for the music player. I don't know how to style the lower part for the range input. Can some pros give me advices?. This is my first question on da Stack :)