CSS: Align elements like windows explorer icons layout style

PHOTO EMBED

Mon Aug 29 2022 21:04:27 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #css

.container {
  width: 500px;
  height: 400px;
  border: 1px solid #c3c3c3;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}

.container > .child{
  width: 80px;
  height: 80px;
}
content_copyCOPY