博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

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

Posted on 2018-10-11 09:38  米粒3  阅读(2874)  评论(0编辑  收藏  举报
/* 清除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;
}