*Build an E-commerce UI — chapter 2 of 2.* Line items and payment form.

What you will build#

The cart layout.

Step by step#

example
html
<div class="grid lg:grid-cols-[1fr_360px] gap-8">
  <div class="divide-y"><!-- line items --></div>
  <aside class="p-6 rounded-2xl border h-fit sticky top-24">Summary</aside>
</div>

Why it works#

grid-cols-[1fr_360px] + sticky summary = the canonical checkout.

Try it yourself#

  • Add quantity steppers
  • Add promo input
  • Add trust badges

Series navigation#

tutorials/index|All tutorials · tutorials/ecommerce/product-grid|← Product grid