Internet Explorer 10 Windows 8 Remove Text Input and Password Action Icons

前端 未结 7 2017
走了就别回头了
走了就别回头了 2020-12-07 16:09

I am testing a highly-customized web application in Internet Explorer 10 on Windows 8, since it is an up and coming release, and will likely be using my application some day

7条回答
  •  广开言路
    2020-12-07 16:47

    You should instead use this because of the reason in this answer.

    /* don't show the x for text inputs */
    ::-ms-clear {
        width : 0;
        height: 0;
    }
    
    /* don't show the eye for password inputs */
    ::-ms-reveal {
        width : 0;
        height: 0;
    }
    

提交回复
热议问题