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

在chrome下:html

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0; 
}html5

Firefox下:web

input[type="number"]{-moz-appearance:textfield;}

第二种方案:chrome

将type="number"改成type="tel",一样是数字键盘,可是没有箭头。app

 

原文连接:http://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-input-s-spin-boxide

相关文章
相关标签/搜索