Skip to content
1440px

The 1440px Grid System

Column arithmetic, free templates and a generator — the grid system, still useful in 2026.

1440px canvas · 12 columns · 30px gutter
92.5 px per column

Column width = (canvas − 2 × margin − gutter × (columns − 1)) ÷ columns. Set the gutter; the column width follows.

Download the 1440px templates

Column width on a 1440px canvas

No outer margin. Subtract 2 × margin from the canvas first if you use one.
Columns20px gutter24px gutter30px gutter40px gutter
4345 px342 px337.5 px330 px
6223.33 px220 px215 px206.67 px
8162.5 px159 px153.75 px145 px
9142.22 px138.67 px133.33 px124.44 px
10126 px122.4 px117 px108 px
12101.67 px98 px92.5 px83.33 px
1671.25 px67.5 px61.88 px52.5 px
2440.83 px37 px31.25 px21.67 px

Common grid widths

Canvas12 cols @ 30pxWhere it comes from
1440 px92.5 pxFigma default desktop frame; MacBook Air scaled resolution
1280 px79.17 pxCommon laptop breakpoint
1200 px72.5 pxThe 1200px Grid System; Bootstrap xl container
1140 px67.5 pxBootstrap 5 xl container width
960 px52.5 pxThe original 960 Grid System
390 px85.5 pxiPhone 14 / 16e viewport — 4 columns at a 16px gutter

Generator

Full generator with CSS Grid, Tailwind and Figma output: open the grid generator.

Questions

What is a grid system in web design?

A repeating set of columns, gutters and margins that everything on a page aligns to. It removes per-element spacing decisions and makes a layout feel deliberate rather than arranged.

How many columns should a grid have?

12 is the usual answer because it divides by 2, 3, 4 and 6 — halves, thirds, quarters and sixths all work. 8 suits editorial layouts; 4 is standard for mobile.

What is the 8-point grid?

A spacing system where every measurement is a multiple of 8px. It keeps vertical rhythm consistent and maps cleanly onto 1×, 2× and 3× displays, because 8 divides evenly at every scale.

What gutter width should I use?

16–24px on mobile, 24–32px on desktop. Large enough to separate columns clearly, small enough that they still read as one system. On a 1440px canvas, 30px is a common choice.

Should the grid be fixed or fluid?

Fluid. Use repeat(12, minmax(0, 1fr)) — the pixel column width from your design file exists so the file and the build agree, not to be hard-coded into CSS.

The 1440px Grid System builds on the 1200px Grid System by Fly Webservices and the 960 Grid System by Nathan Smith.