HTML reversed attribute
In order list, reversed attribute numbers the list items backwards (in descending order).
<ol reversed>
<li>Australia
<li>China
<li>USA
<li>UK
</ol>
</>
- Australia
- China
- USA
- UK
Attribute values
All possible values of reversed attributereversed attribute is a boolean attribute.
Related Tags
The tags that support reversed attribute<ol> tag
-
ol tag defines ordered lists where order of items is necessary.
Next Previous
Was this article helpful?