移除HTML5 input在type=“number”时的上下小箭头
作者:何兴林 发布时间: 2017-06-26 阅读:
在chrome下:
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
-webkit-appearance: none !important;
margin: 0;
}
Firefox下:
input[type="number"]{-moz-appearance:textfield;}
第二种方案:
将type="number"改为type="tel",同样是数字键盘,但是没有箭头。
文章地址:http://blog.yunzhancms.com/index.php?s=/Article/detail/id/239 欢迎转载,转载时请注明出处