3. 表单输入框 在 IE 中 会有 “X” 和 类似wifi图标的图标出现
原因:
IE 自动给 input加了伪类 ::ms-clear 和 ::ms-reveal
解决:
input::ms-clear, input::ms-reveal {
display: none;
}
文小白滴笔记~~
原因:
IE 自动给 input加了伪类 ::ms-clear 和 ::ms-reveal
解决:
input::ms-clear, input::ms-reveal {
display: none;
}