I want to submit decimal values through html input box. But showing input error as "invalid input" when giving value 1.5 where min=0 and max=3.
html code is given below:
<input type="number" required value="<?php echo $someDecimalvalue; ?>" min="0" max="3" >