Accept all decimal type input number

If you want to accept all decimal from french or English in input number you can use :




Use virgule in input type number :

<!-- 2 chiffres après la virgule : -->
<input type="number" step="0.01">

<!-- n'importe quel nombre décimal -->
<input type="number" step="any">