Suggest an editImprove this articleRefine the answer for “What does the order property do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**`order`** sets the display order of flex items inside the container, without changing their order in the HTML: an element with a smaller value comes earlier, one with a larger value later. **Key point:** by default every element has `order: 0`, so they follow their normal order until the value is changed.Shown above the full answer for quick recall.Answer (EN)Image`order` sets **the display order of flex items** inside the container, without changing their order in the HTML. Behavior: ```css .item1 { order: 1; } .item2 { order: 5; } .item3 { order: 0; } /* the default value */ ``` An element with a smaller `order` will come **earlier**, one with a larger value **later**. By default everything has `order: 0`, so elements follow their normal order.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.