Is it possible to change the order of list items using CSS3?
For example, if a list is coded in HTML in 1,2,3,4,5 order, but I want it to show in 5,1,2,3,4 order.
If you need just reverse, use:
ul { display: flex; flex-direction: column-reverse; }