0
spinners
Hello. I am using google chrome. In html / css, exclusively with input type = number, I would like to remove the spinners which are to the right of the input field, and also the restriction to enter more than 9 digits in said field. Or could I use another method giving the same result. thank you in advance.
3 Answers
0
According to your description it will be good to set type as text and then parse your text for checking as number
0
For digit restrictions you can use
min ="100000000" Lowest nine digit number.
Can you add you code snippet here?
0
<input type="number" required="required" /> <!--I would like the client not to be allowed to put more than 4 digits for exemple only with usage of html-->