How can I reverse all the elements of a flexbox in CSS?
I'm trying to sort elements of a flexbox from the last to the first. I tried using flex-direction: row-reverse; but it only reverses the lines, not the whole container. The result: It sorts like 3-2-1-(...)-9-8-7, what I want is 9-8-7-(...)-3-2-1*…