/* // 取消input的上下箭头,局部样式不能生效 */
input::-webkit-inner-spin-button {
-webkit-appearance: none !important;
}
input::-webkit-outer-spin-button{
-webkit-appearance: none !important;
}
input[type="number"]{
-moz-appearance: textfield;
}
//解决中文输入后,数字类型的input光标上移问题
.el-input__inner{
line-height: 1px !important;
}
网友评论