Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off range value display on IE [duplicate]

I'm styling a custom range element. I've gotten down to trying to normalize it in IE (works in the other browsers I care about).

Separate from the other browsers, IE seems to display a small box with the value while you're moving the thumb around.

I can't seem to figure out how to get this value display to go away, I have my own value display coded separately and would like to use that consistently.

Does anyone know what controls that value element and how to hide it?

like image 473
sam Avatar asked Jan 16 '15 20:01

sam


1 Answers

You're looking for the ::-ms-tooltip pseudo-element:

::-ms-tooltip { display: none; }

enter image description here

like image 58
Sampson Avatar answered Nov 15 '22 20:11

Sampson