I am facing an issue where the styling of a range type input field in my code is not compatible with IE11.
try.html
<div class="footer">
<div class="row justify-content-center">
<div class="container">
<input class="range" type="range" min="0" max="100">
</div>
</div>
</div>
style.css
.slider{
-webkit-appearance: none;
width: 100%;
padding: 0;
height: 3px;
opacity: 1;
background: #d3d3d3;
}
.slider::-webkit-slider-thumb{
-webkit-appearance: none;
appearance: none;
border:3px solid #6452d6;
border-radius: 25px;
background-color: white;
width: 55px;
height: 20px;
}
While the design displays correctly in Chrome, IE11 fails to render it properly. How can I ensure that it appears as intended in IE11?