Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-color:#E7E9EB;
}
#main {
  background-color:#FFFFFF;
  width: 100%;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
}
#main div {
  width: 100%;
  height: 40px; 
}
</style>
</head>
<body>
<h1>The align-content Property</h1>
<div id="main">
  <div style="background-color:coral;"></div>
  <div style="background-color:lightblue;"></div>
  <div style="background-color:pink;"></div>
</div>
</body>
</html>