Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Set Distance Between Flexbox Items</title> <style> .flex-container { height: 300px; border: 1px solid black; display: flex; justify-content: space-between; } .item { width: 20%; background: #b4bac0; } </style> </head> <body> <div class="flex-container"> <div class="item">Item 1</div> <div class="item">Item 2</div> <div class="item">Item 3</div> <div class="item">Item 4</div> </div> </body> </html>