CSS Grid Layout - CSS: Cascading Style Sheets | MDN

PHOTO EMBED

Mon May 11 2020 21:33:40 GMT+0000 (Coordinated Universal Time)

Saved by @Ulises Villa #css

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1 / 3;
  grid-row: 1;
}
.two { 
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.three {
  grid-column: 1;
  grid-row: 2 / 5;
}
.four {
  grid-column: 3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 3;
  grid-row: 4;
}
content_copyCOPY

CSS Grid Layout 2

https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout