Gridless Design, A Reference Site for Layout Without Grids

Creator · 2021 · 4 min read

An educational reference site that helps designers and developers build resilient, responsive layouts by working with the browser's layout engine instead of imposing a print-style grid.

Overview

Gridless Design makes the case that the web supplies structure and order through its own layout engine, not a fixed visual grid. It walks from the history of the grid through guidance for designers and concrete techniques for developers.

Problem

Grids have been a foundational design tool for decades, but the web is a different medium. Overlaying a curated grid onto the browser's existing alignment algorithms is often more trouble than it's worth, fighting the platform instead of working with it.

Constraints

Approach

Rather than prescribe a grid, the site shows how the web supplies structure on its own: content-driven spacing in rem, max and min widths with auto margins for alignment, flexbox for one-dimensional rows and CSS Grid for two-dimensional layouts where columns are informed by their content, and a move away from viewport media queries toward content- and container-aware techniques like the Holy Albatross and ResizeObserver.

Key Decisions

Tech Stack

Result & Impact

Gridless Design gave the community a vocabulary and rationale for working with the grain of the web, and it continues to influence how teams think about responsive layout.

Learnings

Grids came to the web as an inheritance from print, where a fixed var(–bgcolor) makes a fixed grid sensible. The web has no fixed var(–bgcolor). The viewport, the reader’s font size, their zoom, and the content itself all vary, so a curated grid becomes one more rigid rule stacked on top of the rules the browser is already enforcing. “Blasphemy, I need structure and order!” is the honest reaction, and the site’s answer is that the web already supplies both through its own layout engine, if you stop fighting it.

The hard part is rarely the CSS, it is the mindset. Anyone trained on a static artboard has learned to place things at coordinates, so letting content simply flow, sizing itself to the space and the words inside it, can feel like giving up control. Gridless meets that discomfort directly: it traces where the grid came from, separates the path for designers from the path for developers, and shows that the order designers want is still there, just produced by the platform instead of drawn on top of it.

That unfamiliarity is exactly why the reference was needed, and why it resonated well beyond what I expected.

Read more at gridless.design.