Dofactory.com
Dofactory.com
Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

HTML <input> min Attribute

The min attribute on an <input> tag sets the minimum value for that element.

The input element must be of a type that accept numeric, date, or time values.

Example

#

A min attribute on a number <input> element.
A minimum value that can be entered in this number input is set.

Quantity  

<form action="/tutorial/action.html">
  Quantity &nbsp;
  <input type="number" name="number" min="1" max="10" value="3"> 
  
  <br /> <br />
  <input type="submit">
</form>

Using min

The min attribute specifies the minimum value allowed in the input element.

This attribute only applies to these input types:

With numbers, the min value must be less than the max value. For dates this is not required.


Syntax

<input min="number | datetime">

Values

#

Value Description
number Minimum numeric value.
datetime Minimum datetime value.

Browser support

Here is when min support started for each browser:

Chrome
5.0 May 2010
Firefox
16.0 Oct 2012
IE/Edge
10.0 Sep 2012
Opera
10.6 Jul 2010
Safari
5.1 Oct 2011

You may also like

 Back to <input>

Last updated on Sep 30, 2023

Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

Guides