now I'm developing web-service that has number-type inputs. Instead of standart "typing" input I want to disable it and allow only to input with these "arrows" as you can see down here. There wouldn't be problem if this arrows would appearing in mobile device screen, but their not :(
input[type=number]::-webkit-inner-spin-button {
opacity: 1
}
↓ This is an input with disabled typing
<br>
<br>
<input min="0" max="10" type="number" onKeyDown="return false">
← How to show this arrows also on mobile???
Did anyone have ideas how to display this arrows in mobile screen?