1
2
3
4
5
.box { display: flex; flex-direction: row; } .box :nth-child(1) { order: 2; } .box :nth-child(2) { order: 3; } .box :nth-child(3) { order: 1; } .box :nth-child(4) { order: 3; } .box :nth-child(5) { order: 1; }
1
2
3
4
5