Bootstrap 5 Range Slider With Labels Code Example
Example 1: bootstrap range slider with 2 handles
No, the HTML5 range input only accepts one input. I would recommend you to use something like the jQuery UI range slider for that task.
Example 2: bootstrap range slider
<label for="customRange3" class="form-label">Example range</label> <input type="range" class="form-range" min="0" max="5" step="0.5" id="customRange3">
Comments
Post a Comment