Slider

A form control allowing the user to select a value from a predefined range.

Basic Usage

You can create a slider by creating an input element with a type of range and giving it the slider class.

HTML Copied!
<input
  class="slider"
  type="range"
  min="0"
  max="100"
  value="50"
/>