I have an input field with type is number . Is it possible to display or style the increment arrow disabled when max value is reached similarly decrement arrow disabled when min value is reached ?
<input type="number" id="quantity" name="quantity" min="1" max="5">
When 1 is reached decrement arrow should appear as greyed out and when 5 is reached increment arrow should appear as greyed out.