HTML <ol> reversed Attribute
Example
Descending list order:
<ol reversed>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
Try it Yourself »
Definition and Usage
The reversed
attribute is a boolean attribute.
When present, it specifies that the list order should be descending (9,8,7...), instead of ascending (1, 2, 3...).
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
Attribute | |||||
---|---|---|---|---|---|
reversed | 18.0 | 79.0 | 18.0 | 6.0 | 12.1 |
Syntax
<ol reversed>
❮ HTML <ol> tag