how to remove increment in input type number

Solutions on MaxInterview for how to remove increment in input type number by the best coders in the world

showing results for - "how to remove increment in input type number"
Antonia
06 Aug 2017
1input::-webkit-outer-spin-button,
2input::-webkit-inner-spin-button {
3  -webkit-appearance: none;
4  margin: 0;
5}
6
7/* Firefox */
8input[type=number] {
9  -moz-appearance: textfield;
10}