I work on a web application running in Chrome, where I have inputs with type number
. In my locale commas are used for decimal numbers and a space is used for th
If you don't need the up/down ticks, than follow workaround can help:
for german comma (,) only:
dot (.) only:
both but don't together: (no 1000 seperator)
otherwise number for German/Deutsch:
and style it with:
input[type=number] {
-moz-appearance:textfield;
-webkit-appearance: none;
appearance: textfield;
}