/* 清除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;
}

相关文章:

  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
猜你喜欢
  • 2021-11-30
  • 2021-10-30
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2021-08-22
相关资源
相似解决方案