.parent {
  margin: 20px auto;
  display: flex;
  flex-flow: column wrap;
}

.child {
  min-height: 100px;
  background: green;
  border: 5px solid white;
  flex: 1 1 auto;
  line-height: 100px;
  text-align: center;
}
