Is it possible to stylize the usual input [type=range] like this: 
There are no ideas how to do this without using a bunch of little div .
<input type="range" min="0" max="100" step="0.1" value="0"/> Is it possible to stylize the usual input [type=range] like this: 
There are no ideas how to do this without using a bunch of little div .
<input type="range" min="0" max="100" step="0.1" value="0"/> $("#slider").roundSlider({ width: 10, handleSize: "+16", value: "25" }); @import url('https://cdn.jsdelivr.net/jquery.roundslider/1.0/roundslider.min.css'); .rs-control .rs-path-color { background-color:#dfdfdf; border-color: #3f3f3f; } .rs-handle { background-color: #3f3f3f; } .rs-bar .rs-seperator { display: none; border-color:#dfdfdf; } <script src="https://code.jquery.com/jquery-2.2.4.js"></script> <script src="https://cdn.jsdelivr.net/jquery.roundslider/1.0/roundslider.min.js"></script> <div id="slider" class="rslider"></div> Source: https://ru.stackoverflow.com/questions/911257/
All Articles