html code
默认:<input type="number" /><br><br> 处理:<input type="number" class="deal" />
css code
.deal::-webkit-textfield-decoration-container { background-color: #f0f3f9; } //添加背景色 下边两行是去掉input 输入框右边的上下箭头按钮.deal::-webkit-inner-spin-button { -webkit-appearance: none; } .deal::-webkit-outer-spin-button { -webkit-appearance: none; }
The above is the detailed content of How to remove the up and down arrows in the input box in input type=number. For more information, please follow other related articles on the PHP Chinese website!