Open In App

HTML | <input> min Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML min Attribute is used to specify the minimum value for an input field. It can be used together with the max attribute to create a range of values. It can be used with the many input fields such as number, range, date, datetime, datetime-local, month, time and week. Syntax: 

<input min="number|date">

Attribute Values: 

  • number: It contains the value i.e number which specifies the minimum value allowed by the input field.
  • date: It contains the value i.e date which specifies the minimum date allowed for the <input> date field.

Example: This Example illustrates the use of min attribute in <input> element. 

html




<!DOCTYPE html>
<html>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
      HTML | min Attribute in Input Field
  </h2>
    <form id="myGeeks">
        <input type="number"
               id="myNumber"
               step="5"
               name="geeks"
               placeholder="multiples of 5"
               min="10">
    </form>
    <br>
    <br>
    <p style="font-size:20px;">
      The minimum value for an input field is 10.
  </p>
</body>
 
</html>


Output:

  

Supported Browsers: The browser supported by HTML <Input>min Attribute are listed below:

  • Google Chrome 4.0 and above
  • Edge 12.0 and above
  • Internet Explorer 10.0 and above
  • Firefox 16.0 and above
  • Opera 12.1 and above
  • Safari 5.0 and above

Last Updated : 12 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads