Frontend Development 9 min read

Comprehensive Guide to CSS Grid Layout: Responsive Design, Implicit/Explicit Grids, Alignment, and Advanced Techniques

This article provides an in‑depth tutorial on CSS Grid, covering responsive layouts with media queries, auto‑fit/minmax tricks, implicit versus explicit grids, column spanning, alignment properties, place‑content shortcuts, repeat syntax, masonry rows, and useful online resources, all illustrated with practical code examples.

Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Comprehensive Guide to CSS Grid Layout: Responsive Design, Implicit/Explicit Grids, Alignment, and Advanced Techniques

Responsive Layout

Traditional media‑query based layouts can be verbose; CSS Grid simplifies responsive designs with concise code.

.parent {
  width: 90%;
  margin: 60px auto;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 750px) {
  .parent { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .parent { grid-template-columns: repeat(2, 1fr); }
}

Using auto‑fit and minmax makes the layout even shorter:

.parent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
}

Implicit vs. Explicit Grid

When you define grid-template-columns or grid-template-rows , you create an explicit grid; otherwise the browser generates an implicit grid.

Column Spanning and Grid Auto‑Columns

To place an element in a specific column, use grid-column-start or grid-column :

.time { grid-column-start: 2; }

Make an item span two columns:

.plan-list {
  grid-column: span 2; /* same as grid-column: 1 / 3; */
}

Ensure equal column widths with grid-auto-columns :

.grid {
  display: grid;
  grid-auto-columns: 1fr;
}

Alignment

Grid supports the same alignment properties as Flexbox. justify-content distributes columns, while justify-items aligns items within their cells. For individual items, use justify-self and align-self .

Place‑Content and Place‑Items (Syntax Sugar)

place-content is a shorthand for justify-content + align-content , and place-items combines justify-items + align-items , allowing quick centering of children.

Advanced Techniques

Repeat syntax can shorten repetitive column definitions:

display: grid;
grid-template-columns: 100px 1fr 1fr; /* same as */
grid-template-columns: 100px repeat(2, 1fr);

For patterned repeats:

display: grid;
grid-template-columns: repeat(3, 1fr 2fr);

Firefox supports a masonry layout for waterfall‑style grids:

grid-template-rows: masonry;

Resources

Online CSS Grid practice site for interactive learning.

CSS Grid generator that creates complex layouts and provides the corresponding CSS code.

The author encourages readers to experiment with Grid, overcome the learning curve, and apply these techniques in real projects.

frontendCSSCSS GridhtmlResponsive DesignWeb Layout
Rare Earth Juejin Tech Community
Written by

Rare Earth Juejin Tech Community

Juejin, a tech community that helps developers grow.

0 followers
Reader feedback

How this landed with the community

login Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.