Hack for firefow in input type=”number”

If your are using <input type = “number”> it brings up the numerical keyboard on input fields which should only contain numbers.

In Firefox, using number inputs displays some extra arrows, if you want to remove them then you can do it with simple CSS:

input[type=number] {
    -moz-appearance:textfield;
}