2016-03-16 69 views

回答

0

您應該能夠使用::-ms-tooltip僞元素刪除文本值。我不確定是否可以隨意設計它,但the documentation爲:

請注意,只有顯示和可見性樣式屬性適用於-ms-tooltip。

這裏是與工具提示的樣品中移除:

input[type="range"]::-ms-tooltip { 
 
    display: none; 
 
}
<input type="range" min="0" max="100" />