Css3 Pr Order
## CSS order property
### Definition and Usage
**order** propertySpecifies the order of the items (flex items) inside the flex container. Items are arranged according to `order` Values in ascending order. Having the same `order` Items with the same value are arranged in the order they appear in the source code.
**Note:** If the element is not a flex item, this property has no effect.
### Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| property | | | | | |
| :--- | :--- | :--- | :--- | :--- | :--- |
| order | 29.0 | 12.0 | 20.0 | 9.0 | 17.0 |
### CSS Syntax
```css
order: number|initial|inherit;
### propertyValue
| Value | Description |
| :--- | :--- |
| *number* | The default value is 0. Specifies the order of flexible items. |
| initial | Set to the default value.(#) |
| inherit | Inherits this property from the parent element.(#) |
###
- [CSS3 Flexible box (Flexbox)](#)
YouTip