JSFiddle - React, Tailwind, and code Playground

HTML

with border: <input type="range" /> <br />
without border: <input type="range" class="no-border" />

CSS

input[type=range] {
    -webkit-appearance: none;
    background-color: silver;
}

input[type=range].no-border:focus {
    outline: none;
}