HTML/CSS - 14

HTML/CSS - 14: CSS Grid Layout

Learn CSS Grid — the most powerful way to create complex two-dimensional layouts.

✦ HTML Editor
▶ Live Output
👀 Show Solution
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}