JSFiddle - React, Tailwind, and code Playground

by robnyman

HTML

<p>This is the range input element:</p>

<p><input type="range"></p>
    
<p>This is a styled range element:</p>
    
<p><input type="range" class="styled"></p>

CSS

.styled::-moz-range-progress {
    background: #f00;
}