Computer scienceFrontendCSSFlexbox

Orientation and Display order

Guess the order

Report a typo

Based on the CSS code below, determine the order in which the items will be displayed.

.item1{
  order: 202;
}

.item2{
  order: 201;
}

.item3{
  order: -1;
}

.item4{
  order: 100;
}
Put the items in the correct order
.item3
.item4
.item2
.item1
___

Create a free account to access the full topic