Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <ol> reversed Attribute

❮ HTML <ol> tag

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