aria-valuemin
NumberDefines 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">
Associated roles
Example
aria-valuemin="…"
<div role="slider" aria-valuemin="0"
aria-valuenow="60" aria-valuemax="100">…</div>References