A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-input-min-attribute/ below:

HTML | <input> min Attribute

HTML | <input> min Attribute

Last Updated : 12 Aug, 2022

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: 

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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4