flex アイテム個別に表示される順序を変更

メモ

ul {display: flex; flex-direction:column;}
ul li:nth-child(1) { order: 3;}
ul li:nth-child(2) { order: 1;}
ul li:nth-child(3) { order: 2;}