PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #main { width: 250px; height: 250px; border: 5px solid #88c999; display: flex; flex-direction: row-reverse; } #main div { width: 100px; height: 250px; } </style> </head> <body> <h1>flex-direction property example</h1> <div id="main"> <div style="background-color:red;">A</div> <div style="background-color:blue;">B</div> <div style="background-color:green;">C</div> <div style="background-color:black;">D</div> <div style="background-color:yellow;">E</div> <div style="background-color:white;">F</div> </div> <p><b>Note:</b> Internet Explorer 10 and earlier versions do not support the flex-direction property.</p> </body> </html>