15 CSS Card Grid Layouts09 / 15

Pure CSSMIT licensed

CSS Equal-Height Product Grid

An e-commerce grid where mismatched title and description lengths never break alignment, because every card is a column-flex item so its Add-to-Cart button always lands on the same horizontal axis.

Published

Live Demo
Try it

The code

<div class="cg-03">
  <div class="cg-03__grid">
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#fde68a,#f59e0b)"></div>
      <h3 class="cg-03__name">Ceramic Pour-Over Set</h3>
      <p class="cg-03__desc">Hand-glazed dripper and carafe.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$48</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#a7f3d0,#10b981)"></div>
      <h3 class="cg-03__name">Walnut Cutting Board With Reversible Edge and Juice Groove</h3>
      <p class="cg-03__desc">FSC-certified solid walnut, oiled and ready for daily use in any kitchen.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$72</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#bfdbfe,#3b82f6)"></div>
      <h3 class="cg-03__name">Linen Napkin Set</h3>
      <p class="cg-03__desc">Set of four, stonewashed for softness.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$34</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
  </div>
</div>
.cg-03,
.cg-03 *,
.cg-03 *::before,
.cg-03 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cg-03 ::selection {
  background: #f59e0b;
  color: #1a1a1a;
}

.cg-03 {
  --pad: 20px;
  background: #f8f7f4;
  min-height: 100vh;
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  padding: 48px 24px;
  color: #1f2937;
}

.cg-03__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 24px;
  align-items: stretch;
}

.cg-03__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7e4dd;
  border-radius: 14px;
  padding: var(--pad);
  transition: box-shadow .25s ease, transform .25s ease;
}

.cg-03__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(31,41,55,.25);
}

.cg-03__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin-bottom: 14px;
}

.cg-03__name {
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.cg-03__desc {
  font-size: .82rem;
  color: #6b7280;
  line-height: 1.5;
}

.cg-03__bottom {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cg-03__price {
  font-weight: 800;
  font-size: 1.05rem;
}

.cg-03__cta {
  border: none;
  border-radius: 8px;
  background: #1f2937;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 9px 14px;
  cursor: pointer;
  transition: background .2s ease;
}

.cg-03__cta:hover {
  background: #111827;
}

@media (prefers-reduced-motion: reduce) {
  .cg-03__card,
    .cg-03__cta {
    transition: none;
  }

  .cg-03__card:hover {
    transform: none;
  }
}
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Card Grid Layout from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: CSS Equal-Height Product Grid
Source: https://codefronts.com/layouts/css-card-grid-layout/css-equal-height-product-grid/

An e-commerce grid where mismatched title and description lengths never break alignment, because every card is a column-flex item so its Add-to-Cart button always lands on the same horizontal axis.
## HTML
```html
<div class="cg-03">
  <div class="cg-03__grid">
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#fde68a,#f59e0b)"></div>
      <h3 class="cg-03__name">Ceramic Pour-Over Set</h3>
      <p class="cg-03__desc">Hand-glazed dripper and carafe.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$48</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#a7f3d0,#10b981)"></div>
      <h3 class="cg-03__name">Walnut Cutting Board With Reversible Edge and Juice Groove</h3>
      <p class="cg-03__desc">FSC-certified solid walnut, oiled and ready for daily use in any kitchen.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$72</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
    <article class="cg-03__card">
      <div class="cg-03__img" style="background:linear-gradient(135deg,#bfdbfe,#3b82f6)"></div>
      <h3 class="cg-03__name">Linen Napkin Set</h3>
      <p class="cg-03__desc">Set of four, stonewashed for softness.</p>
      <div class="cg-03__bottom">
        <span class="cg-03__price">$34</span>
        <button class="cg-03__cta">Add to Cart</button>
      </div>
    </article>
  </div>
</div>
```
## CSS
```css
.cg-03,
.cg-03 *,
.cg-03 *::before,
.cg-03 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cg-03 ::selection {
  background: #f59e0b;
  color: #1a1a1a;
}

.cg-03 {
  --pad: 20px;
  background: #f8f7f4;
  min-height: 100vh;
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  padding: 48px 24px;
  color: #1f2937;
}

.cg-03__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 24px;
  align-items: stretch;
}

.cg-03__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7e4dd;
  border-radius: 14px;
  padding: var(--pad);
  transition: box-shadow .25s ease, transform .25s ease;
}

.cg-03__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(31,41,55,.25);
}

.cg-03__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  margin-bottom: 14px;
}

.cg-03__name {
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.cg-03__desc {
  font-size: .82rem;
  color: #6b7280;
  line-height: 1.5;
}

.cg-03__bottom {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cg-03__price {
  font-weight: 800;
  font-size: 1.05rem;
}

.cg-03__cta {
  border: none;
  border-radius: 8px;
  background: #1f2937;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 9px 14px;
  cursor: pointer;
  transition: background .2s ease;
}

.cg-03__cta:hover {
  background: #111827;
}

@media (prefers-reduced-motion: reduce) {
  .cg-03__card,
    .cg-03__cta {
    transition: none;
  }

  .cg-03__card:hover {
    transform: none;
  }
}
```

How this works

The outer track is a normal CSS grid (equal column widths via repeat(auto-fill, minmax(220px,1fr))), and grid already stretches every cell to the tallest row by default align-items: stretch. The real alignment work happens inside each cell: .cg-03__card is display:flex; flex-direction:column; height:100% so it fills that stretched cell exactly.

Inside the card, the title and description sit in a normal flow block, while margin-top: auto is applied to the price-and-button row. Because the card is a flex column, auto margins absorb all remaining vertical space, pinning the CTA to the bottom regardless of whether the title wraps to one line or three.

Make it yours

  • Clamp the title to two lines with display:-webkit-box; -webkit-line-clamp:2 on .cg-03__name if you want strict visual parity even before the auto-margin kicks in.
  • Change the CTA from a full-width button to an icon-only add button by swapping .cg-03__cta for a 40px circular variant — the margin-top:auto rule still applies unchanged.
  • Adjust card padding via --pad at the .cg-03 root to densify or loosen the whole catalog at once.
  • Add a sale-price strike-through by wrapping the old price in a <s> tag inside .cg-03__price and styling it with reduced opacity.
  • Swap minmax(220px,1fr) to minmax(260px,1fr) for fewer, larger product tiles on dense catalogs.

Gotchas — read before shipping

  • Forgetting height:100% on the card itself (only setting flex-direction:column) leaves the card hugging its content instead of stretching, silently breaking the alignment trick.
  • If a card's image uses an intrinsic <img> without a fixed aspect-ratio, varying image proportions will reintroduce misalignment above the text block even with the flex trick applied below it.
  • Nested flex/grid combos like this can confuse older Edge/IE-era engines that don't stretch grid items by default — always verify align-items:stretch isn't being overridden by an inherited align-items:start.

Browser support

ChromeSafariFirefoxEdge
57+10.1+52+57+

Grid auto-stretch plus flexbox auto-margins are both baseline-supported in all evergreen browsers; no fallback needed.

Techniques used in this demo

Search CodeFronts

Loading…