css InputNumber去掉上下箭头

// input标签type为number时怎么去除加减按钮

<input type="number">

/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: 0; 
}
/* 火狐 */
input{
    -moz-appearance:textfield;
}
// 原文链接:https://blog.csdn.net/github_38516987/article/details/78072570

 

end.

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2021-11-25
  • 2021-07-08
  • 2022-01-11
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案