input在type="number"时去右边上下箭头

来源:互联网 发布:linux gzip 生成 zip 编辑:程序博客网 时间:2024/06/03 06:49

html:

<input type="number">

css:

<style>    input::-webkit-outer-spin-button,    input::-webkit-inner-spin-button{        -webkit-appearance: none !important;    }    input[type="number"]{        -moz-appearance:textfield;    }</style>

在disabled状态时,Chrome,FireFox,IE样式也不一样,为了更相近:

input{    background: transparent;    color: #aaa;    border: 1px solid #aaa;}
阅读全文
0 0