Size Guide Table

Measurement chart table with chest, waist, hips, and length columns. Perfect for clothing product pages and sizing reference.

FREE

Ecommerce11: Size Guide Table

Measurement chart for clothing product pages: a titled table whose columns (chest, waist, hips, length, or any other fields you pass) are derived from your data rather than hardcoded, with zebra-striped rows and a unit suffix on each header.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/ecommerce11"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/ecommerce11"

This installs the block to components/beste/block/ecommerce11.tsx and the Table shadcn/ui primitive it uses.

Quick start

The installed file exports ecommerce11Demo alongside the block: the exact props behind the preview above. Spread it to get a working size table in one line.

tsx
import { Ecommerce11, ecommerce11Demo } from "@/components/beste/block/ecommerce11";

export default function ProductPage() {
  return <Ecommerce11 {...ecommerce11Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Ecommerce11 } from "@/components/beste/block/ecommerce11";

export default function ProductPage() {
  return (
    <Ecommerce11
      heading="Size Guide"
      description="Measurements are in centimeters."
      unit="cm"
      sizes={[
        { size: "S", chest: "86-91", waist: "71-76" },
        { size: "M", chest: "97-102", waist: "81-86" },
        { size: "L", chest: "107-112", waist: "91-96" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringSection heading above the table
descriptionstringSupporting text under the heading
unit"in" | "cm""in"Suffix appended to each measurement column header
sizesSizeRow[][]Table rows, one per size
classNamestringExtra classes for the outer <section>
ts
type SizeRow = {
  size: string;
  chest?: string;
  waist?: string;
  hips?: string;
  length?: string;
};

Behavior notes

More Ecommerce blocks

View all Ecommerce
PRO

ecommerce42

Interactive Size Guide

Clothing size selector with body measurement inputs, personalized fit scoring, and comprehensive size chart reference table. Perfect for apparel and footwear product pages.

PRO

ecommerce43

Product Information Tabs

Tabbed product details with description, feature list, specifications table, customer reviews with ratings, and shipping information. Perfect for comprehensive product pages with detailed information.

PRO

ecommerce14

Related Products Grid

Product recommendations grid with images, prices, and add to cart buttons. Perfect for cross-selling and upselling on product pages.

PRO

ecommerce3

Shopping Cart with Summary

Cart page with item cards, quantity controls, and order summary with shipping calculation. Perfect for checkout flows and cart review pages.

FREE

ecommerce4

Shop by Category Grid

Product category browsing with image cards, product counts, and featured badges. Responsive grid layout with hover effects. Perfect for storefront navigation and collection showcases.

FREE

ecommerce32

Shop by Brand Grid

Brand logo cards with product counts and hover effects linking to brand pages. Perfect for multi-brand stores and brand discovery.