css flexbox flexbox is css lyout method which help to manage layout row and column wise in your website page <html> <head> <style> .flex-container { display: flex; background-color: DodgerBlue; } .flex-container > div { background-color: #f1f1f1; margin: 10px; padding: 20px; font-size: 30px; } </style> </head> <body> <h1>Create a Flex Container</h1> <div class="flex-container"> <div>1</div> <div>2</div> <div>3</div> </div> </body> </html>