Menu
Bootstrap 5 Range
Custom Range
To style a range menu, add the .form-range class to the input element with type=”range”:
Example
<!DOCTYPE html>
<html lang=”en”>
<head>
<title>Bootstrap Example</title>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<link href=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css” rel=”stylesheet”>
<script src=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js”></script>
</head>
<body>
<div>
<h2>Custom Range</h2>
<p>To create a custom range menu, add the .form-range class to the input element with type=”range”:</p>
<form action=”/action_page.php”>
<label for=”customRange”>Custom range</label>
<input type=”range” id=”customRange” name=”points”>
<button type=”submit”>Submit</button>
</form>
</div>
</body>
</html>
Steps
By default, the interval between the range numbers is 1. You can change it by using the step attribute:
Example
<!DOCTYPE html>
<html lang=”en”>
<head>
<title>Bootstrap Example</title>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<link href=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css” rel=”stylesheet”>
<script src=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js”></script>
</head>
<body>
<div>
<h2>Steps in a Range</h2>
<p>By default, the interval between the range numbers is 1. You can change it by using the step attribute:</p>
<form action=”/action_page.php”>
<label for=”customRange”>Custom range</label>
<input type=”range” id=”customRange” step=”10″ name=”points”>
<button type=”submit”>Submit</button>
</form>
</div>
</body>
</html>
Min and Max
By default, the minimum value is 0 and maximum value is 100. You can use the min and/or max attribute change it:
Example
<!DOCTYPE html>
<html lang=”en”>
<head>
<title>Bootstrap Example</title>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<link href=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css” rel=”stylesheet”>
<script src=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js”></script>
</head>
<body>
<div>
<h2>Min and Max Range</h2>
<p>Use the min and/or max attribute to specify the minimum/maximum value of a range:</p>
<form action=”/action_page.php”>
<label for=”customRange”>Custom range</label>
<input type=”range” id=”customRange” name=”points” min=”0″ max=”4″>
<button type=”submit”>Submit</button>
</form>
</div>
</body>
</html>