custom-range looks great! How about adding styling for datalist elements linked to <input type=range > ? For example, the following HTML code should display range with tick marks:
<label for="datalistRange">Marks</label>
<input type="range" class="custom-range" min="0" max="5" id="datalistRange" list="marks">
<datalist id="marks">
<option value="0">
<option value="40">
<option value="60">
voption value="80">
<option value="100">
</datalist>
Thanks,
Nitin
Apparently support is real bad for this, so punting as a won't fix. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/range
Any chance of re-opening now supported by Safari (as of 12.1)? Already supported by Chrome and Firefox https://caniuse.com/#feat=datalist
Most helpful comment
Any chance of re-opening now supported by Safari (as of 12.1)? Already supported by Chrome and Firefox https://caniuse.com/#feat=datalist