-1
在CSS中使用了下面的代碼行去除IE10中的交叉標記。但交叉標記仍然出現。請幫我解決這個問題。刪除IE10中的交叉標記
input[type=text]::-ms-clear {
display:none;
}
在CSS中使用了下面的代碼行去除IE10中的交叉標記。但交叉標記仍然出現。請幫我解決這個問題。刪除IE10中的交叉標記
input[type=text]::-ms-clear {
display:none;
}
您發佈的CSS效果很好。
只要確保您在輸入元素中包含了type =「text」屬性。
<input type="text" />
input[type=text]::-ms-clear {
display:none;
}
它是工作的http://的jsfiddle。淨/ 4rza8 /。你可能正在做別的事情...... – Sachin