https://files-cdn.cnblogs.com/files/yummylucky/zhifu.bmp

支付宝

https://files-cdn.cnblogs.com/files/yummylucky/WeChat.bmp

微 信

去掉 input [number] 默认箭头样式

 

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;
}

 

posted @ 2019-11-04 11:11  kiss雪夜  阅读(2560)  评论(0编辑  收藏  举报