码迷,mamicode.com
首页 > Web开发 > 详细

css InputNumber去掉上下箭头

时间:2019-12-31 12:45:35      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:https   code   number   sdn   tail   标签   input   line   color   

css InputNumber去掉上下箭头

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

<input type="number">

/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: 0; 
}
/* 火狐 */
input{
    -moz-appearance:textfield;
}
// 原文链接:https://blog.csdn.net/github_38516987/article/details/78072570

 

end.

css InputNumber去掉上下箭头

标签:https   code   number   sdn   tail   标签   input   line   color   

原文地址:https://www.cnblogs.com/wn798/p/12123570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!