Removing clear and reveal password icons from IE10

前端 未结 3 1087
深忆病人
深忆病人 2020-12-09 09:14

I have this design where the user inputs some text in input type=text and it is validated via jQuery. Now when user inputs some data, IE10 shows an X

3条回答
  •  庸人自扰
    2020-12-09 09:33

    The following CSS worked for me

    input::-ms-clear, input::-ms-reveal {
        display: none;
    }
    

    See ::-ms-clear and ::-ms-reveal for extra information.

提交回复
热议问题