移除HTML5 input在type="number"时的上下小箭头

来源:互联网 发布:网络销售代理合同范本 编辑:程序博客网 时间:2024/06/04 19:04

在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://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-input-s-spin-box


appearance 参考链接:http://www.w3cplus.com/css3/changing-appearance-of-element-with-css3.html

0 0
原创粉丝点击