HTML reversed Attribute

The reversed attribute is a boolean attribute."

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...).

Applies to

The reversed attribute can be used on the following element:

Element Attribute
<ol> reversed

Example

Descending list order:

<ol reversed>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
reversed 18.0 Not supported 18.0 5.2 Yes