michaelxlm
/*隐藏input框上下箭头*/
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input::-webkit-outer-spin-button {
-webkit-appearance: none;
}
/*将checkbox样式修改为radio类型的样式*/
input[type=checkbox]{
 -webkit-appearance: radio!important;
}
/*将type!=password类型的input框密码显示*/
input{
-webkit-text-security: disc;
}

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-11-29
  • 2022-01-08
  • 2022-01-31
  • 2022-02-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2021-11-27
  • 2022-12-23
  • 2022-01-11
相关资源
相似解决方案