input框在浏览器上显示一个叉,去掉方法

/* 清除IE10及以上版本input的叉叉(X)和密码输入框的眼睛图标 */
input::-ms-clear {
display: none;
}
input::-ms-reveal {
display: none;
}
/*清除谷歌浏览器下的 search 叉号 */
input[type=search]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/*清除IE下的 search 叉号 */
input[type=search]::-ms-clear {
display: none;
}
原文地址:https://www.cnblogs.com/mili3/p/9770679.html