HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #parent{ display: flex; justify-content: space-around; flex-wrap: wrap; } #parent > div{ width: 90px; height: 90px; border: 1px solid #8c8c8c; margin: 10px; } </style> </head> <body> <h1>CSS flexbox</h1> <div id="parent"> <div>Div 1</div> <div>Div 2</div> <div>Div 3</div> <div>Div 4</div> </div> <p><strong>Note</strong>: Try to resize the width of this output window.</p> </body> </html>
OUTPUT
×

Save as Private