Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All attributes

aria-valuemin

Number

Defines the minimum value a range widget can take, forming the lower bound for aria-valuenow. Assistive technologies use it together with aria-valuemax to express the current value as a proportion of the range. It's required on slider and spinbutton unless the range has no defined minimum.

Value
Any number, typically within the widget's min/max range.
Used on
<input type="range">
Example
aria-valuemin="…"
<div role="slider" aria-valuemin="0"
  aria-valuenow="60" aria-valuemax="100">…</div>