控制input为number时样式

Posted 艳阳天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控制input为number时样式相关的知识,希望对你有一定的参考价值。

当input的type为number时会显示数字加减的上下箭头,这里把其去掉:

input[type="number"]{ -moz-appearance: textfield; -webkit-appearance: none !important; } input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0; }

  

 

以上是关于控制input为number时样式的主要内容,如果未能解决你的问题,请参考以下文章