-2
I was preparing a form and one of the field is only necessary to accept number, so I thought, because I do not use input
of the kind number
? this will be good even for accessibility, no need to do "scripts" to handle this input.
But those "arrows" inside the input
of the kind number
, or of datalist
generates a short discomfort and there arises my great doubt.
It is possible to remove these "arrows"?
Personal note: I may be assuming wrong, but I believe this is generated by the browser and does not have any kind of estilo
or tag
to change that.
<input type="number" name="numero" min="0" max="100">
<br>
<input type="text" name="texto" list="alpha">
<datalist id="alpha">
<option>Something</option>
<option>else</option>
<option>Select-me</option>
<option>Some text with space</option>
<option>minding blowing</option>
</datalist>
NOTE: someone is negativizing the questions of stack overflow brazil, I performed the question in less than 2 minutes, I was already negative.
– WEB Last Wolf
I think this link can help you: https://answall.com/questions/336061/stylesr-um-input-type-number-para-trocar-as-arrows
– Lucas Ayrosa
Thank you, but it is not as precise as the reply you have given me.
– WEB Last Wolf