The order
property defines the order of the flex items relative to other flex items.
order: value;
.flex-container{
display: flex;
gap: 5px;
}
.mydiv {
order: 2;
}
.div2{
order: 1;
}
.div3{
order: 3;
}
value: sets the order of the flex items.