Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 align-content Property</title> <style> .flex-container { height: 300px; width: 200px; font-size: 32px; border: 1px solid black; /* Safari */ display: -webkit-flex; -webkit-flex-flow: row wrap; -webkit-align-content: space-around; /* Standard syntax */ display: flex; flex-flow: row wrap; align-content: space-around; } .flex-container div { height: 75px; width: 200px; } .item1 { background: #e84d51; } .item2 { background: #7ed636; } .item3 { background: #2f97ff; } </style> </head> <body> <div class="flex-container"> <div class="item1">1</div> <div class="item2">2</div> <div class="item3">3</div> </div> </body> </html>