Update site/src/content/docs/forms/range.mdx
BrowserStack / browserstack (push) Has been cancelled Details

Co-authored-by: Julien Déramond <juderamond@gmail.com>
This commit is contained in:
Mark Otto 2025-06-08 20:07:38 -07:00 committed by GitHub
parent ea4bebc0dc
commit ce75d945b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ The value of the range input can be shown using the `output` element and a bit o
<Example code={`<label for="customRange4" class="form-label">Example range</label>
<input type="range" class="form-range" min="0" max="100" value="50" id="customRange4">
<output for="customRange4" id="rangeValue"></output>
<output for="customRange4" id="rangeValue" aria-hidden="true"></output>
<script>
// This is an example script, please modify as needed