chrome input[number]默认箭头样式:
&::-webkit-inner-spin-button{
   // webkit内核input[number]默认箭头样式
  -webkit-appearance: none !important;
   margin: 0;
   -moz-appearance: textfield;
}


firefox,edge input[number]默认箭头样式:
&[type="number"] {
  // molilla内核input[number]默认箭头样式
  -moz-appearance: textfield;
}

 

相关文章:

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