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

Posted 顺文章

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移除HTML5 input在type="number"时的上下小箭头相关的知识,希望对你有一定的参考价值。

在chrome下:

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

Firefox下:

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

以上是关于移除HTML5 input在type="number"时的上下小箭头的主要内容,如果未能解决你的问题,请参考以下文章

html5中,input 的属性type="range",样式怎样美化

input type="file"使用

Chrome 上浮点数的 HTML 5 input type="number" 元素

时间h5的date的原生样式怎么更改

如何在 Laravel Blade 模板中添加 input type="number"?

在 WKWebView 中调用 <input type="text"> 上的 .focus() 会导致键盘延迟