normal

1
2
3

.container div:nth-child(2) { order: -1}

1
2
3

.container div:nth-child(2) { order: 1}

1
2
3

static order

.container  { 

            > div:nth-child(2) {
                order: 3;
            }

            > div:nth-child(1) {
                order: 2;
            }

            > div:nth-child(3) {
                order: 1;
            }
        }
1
2
3