Open In App

HTML | step Attribute

Last Updated : 03 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The step attribute in HTML is used to set the discrete step size of the <input> element. The default stepping value for number inputs is 1.
Usage: It works with the following input types: number, range, date, datetime-local, month, time and week.
Syntax:  

<input step = "value">

Attribute Values: It contains a value i.e number which specifies the legal number interval for the number field. It has a default value which is 1.

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>HTML step Attribute</title>
    <style>
        h1,
        h2 {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
 
        <h2>
            HTML step Attribute
        </h2>
 
        <input type="number" name="points" step="5"
                       placeholder="multiples of 5">
    </center>
</body>
 
</html>


Output:  

step

Supported Browsers: The browser supported by step attribute are listed below: 
 

  • Google Chrome 6.0
  • Internet Explorer 10.0
  • Firefox 16.0
  • Opera 10.6
  • Safari 5.0

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads