HTML CSS examples for CSS Form:input
show error messages for min and max values of an input field with number type
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!-- ww w . j ava 2s .c om--> <body> <form> <input type="number" min="0.1" max="30" required> <input type="submit"> </form> </body> </html>