TIL reversing HTML lists
POSTED ON:
Today I learned about the reverse attribute.
<ol reversed>
<li>Apples</li>
<li>Oranges</li>
<li>Pears</li>
<li>Lemons</li>
</ol>
This will display:
- Apples
- Oranges
- Pears
- Lemons
Make it a flex-direction column-reverse, and boom --
This will display:
- Lemons
- Pears
- Oranges
- Apples
The codepen: https://codepen.io/elijahmanor/pen/zYqNxgE
REFERENCE:
via https://elijahmanor.com/blog/pun-interview
Related TILs
Tagged: html