How to reverse the order of element's children?
08:21 04 Jun 2013

How can you reverse the order of a div's children with pure CSS?

For example:

I want

A
B
C
D

to be displayed as:

D
C
B
A

I've created a demo on JSfiddle: http://jsfiddle.net/E7cVs/2/

html css