天天看点

input标签type为number时怎么去除加减按钮

今天在玩<剑与家园>的时候发现了他们主页一个很别扭的地方:

input标签type为number时怎么去除加减按钮

申请体验服的验证码输入框应该是设置了type= “number”,所以输入框会有一个增减数字的按钮.

那么,怎么去掉这个别扭的东西呢?

首先想到的是用 type =”tel” 这样移动端同样会调出数字输入键盘, 而且也不存在加减按钮

然鹅

如果只修改样式应该怎么做呢?

/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: ; 
}
/* 火狐 */
input{
    -moz-appearance:textfield;
}
           

继续阅读