在我在整个应用程序中使用的css中,我有这段代码:
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: textfield;
margin: 0;
}
使用该样式,类型编号输入中的箭头将隐藏在我的整个应用程序中。但在一个页面中,我有一个输入元素,类型编号和类" numberInGrid"我希望为.numberInGrid元素显示箭头。我该怎么做?
答案 0 :(得分:0)
外观css默认值正常使用.numberInGrid
.numberInGrid{
appearance:normal;
-moz-appearance:normal;
-webkit-appearance:normal;
}