Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> .container { display: flex; flex-direction: row; /* Main axis is horizontal */ justify-content: space-between; /* Distribute space along the main axis */ align-items: center; /* Align items along the cross axis (vertically) */ height: 200px; background-color: lightgray; } .item { width: 100px; height: 50px; background-color: lightblue; } .item1 { background-color: lightgreen; } .item2 { background-color: lightcoral; } </style> </head> <body> <div class="container"> <div class="item item1">Item 1</div> <div class="item item2">Item 2</div> <div class="item">Item 3</div> </div> </body> </html>