Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> #example { width: 400px; height: 200px; border: 1px solid #000; display: -webkit-flex; /* Safari */ display: flex; } #example div { width: 100px; height: 100px; line-height: 100px; text-align: center; color: #fff; font-size: 30px; font-family: sans-serif; } /* Safari 6.1+ */ div#blue {-webkit-order: 2;} div#green {-webkit-order: 3;} div#grey {-webkit-order: 1;} div#yellow {-webkit-order: 4;} /* Syntaxe standarde */ div#blue {order: 2;} div#green {order: 3;} div#grey {order: 1;} div#yellow {order: 4;} </style> </head> <body> <h2>Exemple de la propriété order</h2> <div id="example"> <div style="background-color: #1c87c9;" id="blue">1</div> <div style="background-color: #8ebf42;" id="green">2</div> <div style="background-color: #666;" id="grey">3</div> <div style="background-color: #f4f442;" id="yellow">4</div> </div> </body> </html>