HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #parent{ display: flex; } #parent > div{ width: 90px; height: 90px; border: 1px solid #8c8c8c; margin: 10px; } </style> </head> <body> <h1>CSS justify-content Property</h1> <div id="parent"> <div>Div 1</div> <div>Div 2</div> </div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementById("parent"); function myFunction(){ x.style.justifyContent = "space-around"; } </script> <p><strong>Note</strong>: Click on the button to change the 'justify-content' from flex-start (default) to space-around.</p> </body> </html>
OUTPUT
×

Save as Private