I am looking for a fail-safe way to hide spin buttons from a number input field in an HTML template for Ionic.
The following HTML code displays an input with spinner buttons:
<ion-input type='number'></ion-input>
The type=number
is convenient for mobile, since it triggers the numeric keyboard. But the spinner buttons are too small for a good user experience.
How can I correctly hide them for all browsers/webkits? Thanks