Как упоминал @godfather, вы можете использовать .flex-container:nth-of-type
. Или вам нужно применить порядок к вновь добавленному элементу li
, имеющему класс flex-block
. Обновите свой css вот так.
.flex-block:nth-of-type(1) { order: 5; }
.flex-block:nth-of-type(2) { order: 4; }
.flex-block:nth-of-type(3) { order: 1; }
.flex-block:nth-of-type(4) { order: 6; }
.flex-block:nth-of-type(5) { order: 2; }
.flex-block:nth-of-type(6) { order: 6; }
.flex-block:nth-of-type(7) { order: 7; }
.flex-block:nth-of-type(8) { order: 8; }
.flex-block:nth-of-type(9) { order: 9; }
.flex-block:nth-of-type(10) { order: 10; }