Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/content/docs/forms/range.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: Range
description: Use our custom range inputs for consistent cross-browser styling and built-in customization.
description: Use our custom range inputs (sliders) for consistent cross-browser styling and built-in customization.
toc: true
---

## Overview

Create custom `<input type="range">` controls with `.form-range`. The track (the background) and thumb (the value) are both styled to appear the same across browsers. As only Firefox supports “filling” their track from the left or right of the thumb as a means to visually indicate progress, we do not currently support it.
Create custom `<input type="range">` controls with `.form-range`. These controls are sometimes also referred to as sliders. The track (the background) and thumb (the value) are both styled to appear the same across browsers. As only Firefox supports “filling” their track from the left or right of the thumb as a means to visually indicate progress, we do not currently support it.

<Example code={`<label for="range1" class="form-label">Example range</label>
<input type="range" class="form-range" id="range1">`} />
Expand Down