<div class="order">
<div class="item">1<br>order-5</div>
<div class="item">2<br>order-3</div>
<div class="item">3<br>order-1</div>
<div class="item">4<br>order-2</div>
<div class="item">5<br>order-4</div>
</div>
.order {
display:flex;
}
.order {
background-color: lightskyblue;
}
.item:nth-of-type(1) {
order:5;
}
.item:nth-of-type(2) {
order:3;
}
.item:nth-of-type(3) {
order:1;
}
.item:nth-of-type(4) {
order:2;
}
.item:nth-of-type(5) {
order:4;
}
.item {
background-color: red;
color:#fff;
margin: 10px;
text-align: center;
padding: 10px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.