CSS | order property
This property is used to specify the order of each flexible item in relation to other items inside the flexible container. It only gives the position to the items present in the container and categorized into a different order as desired by the user. If the element is not the flexible item then this property does not exist any more.
Syntax:
order: number|initial|inherit;
- number: This property is used to specify the order for the flexible item and it gives a number to each item according to the requirement for the user.
Syntax:
order:number;
Example:
<!DOCTYPE html><html><head><title>flex-wrap property</title><style>#main {width: 400px;height: 260px;border: 5px solid black;display: flex;flex-wrap: nowrap;margin-left:70px;margin-bottom:70px;}#main div {width: 100px;height: 50px;}h1 {color:#009900;font-size:42px;margin-left:50px;margin-top:50px;}h2{color:green;margin-left:100px;}}h3 {margin-top:-20px;margin-left:50px;}div#gfg{order:4;}div#geeks{order:5;}div#sudo{order:6;}div#for{oreder:1;}div#geek{orde4r:2;}div#g{order:3;}div{color:white;}}</style></head><body><center><h1>GeeksforGeeks</h1><h2>order:number;</h2><divid="main"><divstyle="background-color:#009900;"id="gfg">geeks</div><divstyle="background-color:#00cc99;"id="geeks">for</div><divstyle="background-color:#0066ff;"id="sudo">geeks3</div><divstyle="background-color:#66ffff;color:black;"id="for">sudo</div><divstyle="background-color:#660066;"id="geek">placement</div><divstyle="background-color:#663300;"id="g">GFG</div></div></center></body></html>chevron_rightfilter_noneOutput:

- initial: It sets the property to its default value.
Syntax:
order:initial;
Example:
<!DOCTYPE html><html><head><title>flex-wrap property</title><style>#main {width: 400px;height: 260px;border: 5px solid black;display: flex;flex-wrap: nowrap;margin-left:70px;margin-bottom:70px;}#main div {width: 100px;height: 50px;}h1 {color:#009900;font-size:42px;margin-left:50px;margin-top:50px;}h2{color:green;margin-left:100px;}}h3 {margin-top:-20px;margin-left:50px;}div{order:initial;}}</style></head><body><center><h1>GeeksforGeeks</h1><h2>order:initial;</h2><divid="main"><divstyle="background-color:#009900;">geeks</div><divstyle="background-color:#00cc99;">for</div><divstyle="background-color:#0066ff;">geeks3</div><divstyle="background-color:#66ffff;color:black;"id="for">sudo</div><divstyle="background-color:#660066;">placement</div><divstyle="background-color:#663300;">GFG</div></div></center></body></html>chevron_rightfilter_noneOutput:

Recommended Posts:
- HTML | DOM Style order Property
- CSS | transition-property Property
- PHP | MySQL ORDER BY Clause
- Next greater element in same order as input
- Check if a number has digits in the given Order
- Maximum sum by picking elements from two arrays in order
- Different ways to sort an array in descending order in C#
- Search in a sorted 2D matrix (Stored in row major order)
- Rearrange all elements of array which are multiples of x in increasing order
- Rearrange all elements of array which are multiples of x in decreasing order
- Print array elements in alternatively increasing and decreasing order
- CSS | top Property
- CSS | right Property
- CSS | all Property
- HTML | DOM name Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



