美文网首页
去除全局element 的input数字后面的上下滚动样式

去除全局element 的input数字后面的上下滚动样式

作者: 前端Sultan | 来源:发表于2022-07-28 21:18 被阅读0次
/* // 取消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;
}

相关文章

网友评论

      本文标题:去除全局element 的input数字后面的上下滚动样式

      本文链接:https://www.haomeiwen.com/subject/bzaxwrtx.html