HTML/CSS - 14
HTML/CSS - 14: CSS Grid Layout
Learn CSS Grid — the most powerful way to create complex two-dimensional layouts.
👀 Show Solution
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
HTML/CSS - 14: CSS Grid Layout
Learn CSS Grid — the most powerful way to create complex two-dimensional layouts.
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}