How to remove handle (thumb) from <input type ="Range"> In Css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to remove handle (thumb) from <input type ="Range"> In Css

hi guys, I want to remove the handle that comes with 'Range' in HTML, how can i hide or remove it.. pls answer

24th Jun 2021, 8:38 PM
Rajat Koparde
Rajat Koparde - avatar
1 Answer
+ 5
input[type="range"]::-webkit-slider-thumb, input[type="range"]::-moz-range-thumb, input[type="range"]::-ms-thumb { opacity:0; } at least with webkit (chrome) 'display:none' make the whole range element not displayed... however 'visibility:hidden' should work (not tested)... more on styling cross-browser input type="range": https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/
24th Jun 2021, 10:20 PM
visph
visph - avatar