Open In App
Related Articles

HTML | step Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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

 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 03 Jul, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials