Preview:
/* invert elements sort order w/o changing markup: */
.container {
    direction: rtl;
    }
    .container > * { 
        direction: ltr; 
    }

/* or */
ul {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
    ul > li {
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
    }
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter