HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #parent{ display: flex; width: 100%; min-height: 250px; border: 1px solid #8c8c8c; } #parent > div{ width: 90px; height: 90px; border: 1px solid #8c8c8c; margin: 10px; } </style> </head> <body> <h1>CSS flex-flow Property</h1> <div id="parent"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("parent"); function myFunction(){ x.style.flexFlow = "column wrap-reverse"; } </script> <p><strong>Note</strong>: Click on the button to change the 'flex-flow' from row nowrap (default) to column wrap-reverse.</p> </body> </html>
OUTPUT
×

Save as Private