--- Guide for css-layout ---
- 1 Fundamentals
- 2 Flexbox
- 3 Grid and subgrid
- 4 Container queries
- 5 Native overlays, anchor positioning, and stacking contexts
- 6 Overflow tracking and layout stability
- 7 Viewport mechanics and track distribution
- 8 Grid lanes (aka masonry)
Lean on the browser's layout engine when possible for better performance. Reach for intrinsic sizing, logical properties, and aspect-ratio before resorting to hardcoded dimensions or complicated media-queries.
Walk the decision tree top-to-bottom and stop at the first match. Note that layouts can be nested within each-other and each decision is based on the use-case for that container.
- Is it a simple row OR column of items? Use flexbox — 1D, content-first, content distributes along a single axis.
- Does a nested element need to line up with its grandparent grid's tracks? Use subgrid — 2D, relationship-first, inherits parent tracks so grandchildren can align across siblings.
- Is it a complex page or component structure with rows AND columns? Use grid — 2D, layout-first, you define the skeleton and content fills it.
- Is the content a long flow of prose that should split into balanced columns? Use multi-column — 1D flow, newspaper-style.
- Are items of varied heights that need to be packed tightly? Use grid with
grid-auto-flow: densetoday; reach for native masonry (aka "grid lanes") only when it ships in your Baseline target (see §8). - Does an element need to float above the page and stay spatially tethered to a trigger, even across DOM boundaries or stacking contexts? Use anchor positioning —
anchor-nameon the trigger,position-anchoron the overlay (see §5).
Do:
- Use logical properties (
inline-size,block-size,margin-inline,padding-block,inset-inline-start) for layout dimensions and spacing — seecss(vianpx -y modern-web-guidance@latest retrieve "css") for full coverage. - Apply the content-first vs layout-first mental model: flexbox when items dictate flow, grid when you define the skeleton first.
- Use the
place-*shorthands (place-content,place-items,place-self) to align across both axes in one declaration. - Reach for intrinsic sizing (
min-content,max-content,fit-content()) and flexible tracks (fr,minmax()) before fixedwidth/height— fewer media queries, more resilient layouts. - Use
aspect-ratioto reserve space for media and prevent layout shift before assets load.
.sidebar { inline-size: max-content; } /* Size to longest unbreakable token. */
.main-content { inline-size: fit-content; } /* Grow to available space, no further. */
.media { aspect-ratio: 16 / 9; inline-size: 100%; block-size: auto; }
body.centered { display: grid; place-content: center; min-block-size: 100dvb; }For
calc-size()and constraint-aware intrinsic sizing, seecalculate-with-intrinsic-sizes(vianpx -y modern-web-guidance@latest retrieve "calculate-with-intrinsic-sizes").
One-dimensional layout — items flow along a single main axis with alignment on the cross axis. Reach for it for navbars, toolbars, item rows, and any single-row-or-column distribution.
Do:
- Establish a context with
display: flexand set the main axis withflex-direction(rowdefault). - Use
flex-wrap: wrapwhenever overflow is a possibility —nowrapwithoutoverflow: auto/hiddenwill spill on narrow viewports. - Use the
flexshorthand<grow> <shrink> <basis>(e.g.,flex: 1 1 250px) on items rather than settingflex-grow/flex-shrink/flex-basisindividually. - Use
gap(or therow-gap/column-gaplonghand) for spacing between items instead of child margins. - Prefix positional alignment with
safe(e.g.,align-items: safe center) so focusable content isn't clipped when the container is narrower than its content. - Push a single item to the far end of the main axis with
margin-inline-start: auto(ormargin-block-start: auto) — that's the standard escape hatch. - Override cross-axis alignment per item with
align-self. - Use
align-itemsto center all items on the cross axis; usemargin: autoon a single item to center it on both axes independently; usealign-contentonly when the container wraps and has extra space across rows. - Set
min-inline-size: 0(ormin-width: 0) on flex items that contain long unbreakable content (URLs, code, long strings) — flex items won't shrink below their content size by default, causing overflow.
Do not:
- Don't reach for
justify-selfon flex items — it only works on grid, block, and absolutely-positioned layouts. Use auto margins instead. - Don't use
orderorflex-direction: *-reverseto reorder interactive content. They change visual order only; the DOM order still drives sequential focus, so keyboard tab flow won't match what the user sees. - Don't confuse
space-around(half-gap at the ends) withspace-evenly(equal gaps before, between, and after). - Don't forget the axis flip: when
flex-direction: column,justify-contentaligns on the block axis andalign-itemsaligns on the inline axis — the opposite of the default. - Don't size both the container and its children to fill each other — that's a common source of overflow and surprising results. Give one side a definite size.
- Don't set both
flex-basisandwidth/inline-sizeon the same item —flex-basistakes precedence in a flex context andwidthis ignored. Useflex-basis(or theflexshorthand) as the single source of truth for sizing flex items.
.card-grid { display: flex; flex-flow: row wrap; gap: 1rem; }
.card-item { flex: 1 1 250px; } /* grow, shrink, basis */
.card-item-action { margin-inline-start: auto; } /* Push to main-axis end. */
.toolbar { display: flex; align-items: safe center; }Baseline status for Subgrid: Widely available. It's been Baseline since 2023-09-15. Supported by: Chrome 117 (Sep 2023), Edge 117 (Sep 2023), Firefox 71 (Dec 2019), and Safari 16 (Sep 2022).
Two-dimensional layout — define rows AND columns explicitly, or let the engine derive them. Subgrid lets a nested grid inherit its parent's tracks so grandchildren align across siblings.
Choosing grid features:
- Do you know exactly how many columns you need?
- Yes — use explicit tracks (
grid-template-columns: 200px 1fr,repeat(3, 1fr), etc.)- Do different columns need different sizes (sidebar + main, header spanning all)? → use
grid-template-areasfor named, readable regions - Are all columns uniform or positioned purely by line number? → use
repeat(N, ...)or named lines
- Do different columns need different sizes (sidebar + main, header spanning all)? → use
- No (responsive, unknown item count) — use
repeat(auto-fit, minmax(min, 1fr))- Should items on the last row stretch to fill remaining space? →
auto-fit - Should empty last-row tracks hold their min size (preserving column ghost slots)? →
auto-fill
- Should items on the last row stretch to fill remaining space? →
- Yes — use explicit tracks (
- Do you need to place an item at a specific location?
- Yes — use
grid-column: <start> / <end>orgrid-area: <name> - No (just spanning multiple tracks, flow position doesn't matter) — use
grid-column: span <n>
- Yes — use
- Do child elements need to inherit the parent grid's track sizes (ragged-edge alignment across siblings)?
- Yes — use subgrid on the affected axis
- Is the number of children per cell variable? → subgrid one axis only; use
grid-auto-rows/grid-auto-columnsfor the other - Is the child count fixed? → subgrid on both axes is fine
- Is the number of children per cell variable? → subgrid one axis only; use
- No — standard grid, no subgrid needed
- Yes — use subgrid on the affected axis
Do:
- Establish a context with
display: grid. - Use
grid-template-areasfor complex page-level layouts — area names are self-documenting and the declaration can be aligned in rows and columns for at-a-glance readability. - Use
repeat(auto-fit, minmax(200px, 1fr))for responsive card grids that stretch filled tracks to fill the row, orauto-fillto preserve empty repeated tracks at their min size. - Use
frfor proportional track distribution andminmax(min, max)for flexible-but-bounded tracks. - Position items with
grid-column: span <n>to size across tracks,grid-column: <start> / <end>to place at specific lines, orgrid-area: <name>for named regions. - Use subgrid (
grid-template-columns: subgridorgrid-template-rows: subgrid) to solve the "ragged edge" problem in card lists — internal elements like titles, metadata, and CTAs line up across siblings. - Pair a subgrid declaration with a preceding explicit
grid-template-rows/-columnsdeclaration as a same-cascade fallback for older browsers.
Do not:
- Don't expect
auto-fit/auto-filltrack size to come from item content — it comes from therepeat()size argument. - Don't use
grid-auto-flow: denseon interactive content. It packs items efficiently but reorders them visually, breaking DOM-order keyboard tab flow. - Don't apply subgrid to both axes when the child count is variable. Extras land in the last track; use
grid-auto-rows/grid-auto-columnsfor the implicit axis instead. - Don't confuse
justify-items/align-items(aligns item content within its track) withjustify-content/align-content(aligns the grid tracks within the container). Using the wrong one silently has no effect. - Don't use
repeat(auto-fit/auto-fill, ...)without a definiteinline-sizeon the container — insidedisplay: inline-gridor an unsized flex item, the container has no width to divide, making track counts unpredictable.
Page shell: <main class="page-layout"> contains <header>, <aside>, a <section class="card-grid"> with <div class="card"> children, and <footer>.
/* Align grid-template-areas in rows and columns for readability. */
.page-layout {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"header header header"
"sidebar main main"
"footer footer footer";
gap: 1.5rem;
}
header { grid-area: header; }
aside { grid-area: sidebar; }
footer { grid-area: footer; }
.card-grid {
grid-area: main;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
grid-template-rows: auto 1fr; /* title block, body block */
gap: 1rem;
}
.card {
grid-row: span 2;
display: grid;
/* Same-cascade fallback: ignored when subgrid is supported. */
grid-template-rows: auto 1fr;
grid-template-rows: subgrid;
}Baseline status for Container queries: Widely available. It's been Baseline since 2023-02-14. Supported by: Chrome 105 (Sep 2022), Edge 105 (Sep 2022), Firefox 110 (Feb 2023), and Safari 16 (Sep 2022).
Query the size (or computed style) of an ancestor container rather than the viewport. Mental model: container queries = component context; media queries = global page layout and user preferences (prefers-color-scheme, prefers-reduced-motion).
Do:
- Establish a containment context with
container-type: inline-size(width-only queries) orcontainer-type: size(both axes) on a wrapper before its descendants can be queried. - Name containers with
container-name(or thecontainershorthand:container: inline-size card) when nested contexts could collide. - Include container query units in calculating fluid type and spacing:
cqi/cqb(logical inline/block),cqw/cqh(physical),cqmin/cqmax. - Give the container a definite
block-sizewhenevercontainer-type: sizeis used — without one, descendants collapse because size containment forces the container to ignore its content.
Do not:
- Don't use
block-sizeas acontainer-typevalue — it isn't valid. Usesizefor both axes. - Don't expect children's intrinsic size to influence the container after declaring
container-type. The container is computed as if it has no children once containment is active. - Don't rely on container query units inside descendants of a non-qualifying ancestor; they fall back to the small viewport (
svw/svh).
.card-wrapper {
container: inline-size / card; /* shorthand for container-type + container-name */
}
@container card (inline-size > 400px) {
.content {
display: flex;
gap: 2rem;
}
}
.title {
/* Fluid type bound to the container width, not the viewport. */
font-size: clamp(1rem, 4cqi, 2rem);
}For component-driven responsive styling patterns, see
size-aware-styling(vianpx -y modern-web-guidance@latest retrieve "size-aware-styling") andfluid-scaling(vianpx -y modern-web-guidance@latest retrieve "fluid-scaling").
Baseline status for : Widely available. It's been Baseline since 2022-03-14. Supported by: Chrome 37 (Aug 2014), Edge 79 (Jan 2020), Firefox 98 (Mar 2022), and Safari 15.4 (Mar 2022). Baseline status for Popover: Newly available. It's been Baseline since 2025-01-27. Supported by: Chrome 116 (Aug 2023), Edge 116 (Aug 2023), Firefox 125 (Apr 2024), Safari 17 (Sep 2023), and Safari iOS 18.3 (Jan 2025). Anchor positioning is not natively supported by any major browser yet.
When to use each overlay primitive:
- Use
popoverfor transient, non-modal UI (flyouts, toasts, tooltips) — lives in the top layer, noz-indexmanagement needed. - Use
<dialog>with.showModal()for modal interactions that require focus trapping and an inert backdrop. - Don't combine
popoverand.showModal()on the same element — they're mutually exclusive runtime states.
Anchor positioning (spatial layout of overlays):
- Use
position-area(oranchor()on insets) andanchor-size()to position and size an overlay relative to its trigger. - Use
position-try-fallbacks: flip-block(orflip-inline) to let the browser reposition when the overlay overflows the viewport. - Don't mix physical and logical keywords in a single
position-areavalue — pick one coordinate system. - Feature-detect with
@supports (anchor-name: --x)and provide an absolute-position fallback.
For full implementation detail, polyfill strategies, and
popovervalue reference, seedeclarative-dialog-popover-control(vianpx -y modern-web-guidance@latest retrieve "declarative-dialog-popover-control") andposition-aware-tooltips(vianpx -y modern-web-guidance@latest retrieve "position-aware-tooltips"). For anchor positioning applied to menus and tab indicators, seeresilient-context-menus-and-nested-dropdowns(vianpx -y modern-web-guidance@latest retrieve "resilient-context-menus-and-nested-dropdowns") andanchor-positioning-tab-underline(vianpx -y modern-web-guidance@latest retrieve "anchor-positioning-tab-underline").
Baseline status for scrollbar-gutter: Newly available. It's been Baseline since 2024-12-11. Supported by: Chrome 94 (Sep 2021), Edge 94 (Sep 2021), Firefox 97 (Feb 2022), and Safari 18.2 (Dec 2024). line-clamp is not natively supported by any major browser yet.
Manage layout shifts, scrollbars, and clipping predictably.
Do:
-
Use
overflow: autoso scrollbars appear only when content actually overflows. -
Use
overflow: clipto clip content without establishing a scroll container; opt into spillover withoverflow-clip-margin. -
Use
scrollbar-gutter: stableto reserve space for scrollbars and prevent layout shifts when content grows. -
Use
overscroll-behavior: contain(ornone) on scrollable containers to stop scroll chains from bubbling into the parent or document. -
Use the
-webkit-line-clamp+display: -webkit-box+-webkit-box-orient: verticaltriad for multi-line truncation — despite the prefix, this pattern is fully specified and not deprecated. Declare the unprefixedline-clampshorthand alongside it; browsers that don't yet support it ignore the property harmlessly. Do not: -
Don't use
overflow: scrollwhenautowill do —scrollforces scrollbars even when there's nothing to scroll. -
Don't reach for
overflow: hiddenwhen you only want to clip —hiddenestablishes a scroll container that can be programmatically scrolled.
.scrollable-list {
max-block-size: 400px;
overflow-y: auto;
scrollbar-gutter: stable; /* Reserve scrollbar space. */
overscroll-behavior: contain; /* No scroll chaining into the page. */
}
.snippet {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
line-clamp: 3; /* Ignored where unsupported. */
overflow: clip;
}For
overflow: clipandoverflow-clip-marginin depth, seeoverflow-clipping-control(vianpx -y modern-web-guidance@latest retrieve "overflow-clipping-control"). For scrollbar color, sizing, and theming, seecustomize-scrollbar-color-and-thickness(vianpx -y modern-web-guidance@latest retrieve "customize-scrollbar-color-and-thickness"),dark-mode(vianpx -y modern-web-guidance@latest retrieve "dark-mode"), andadapt-scrollbar-to-contrast-preferences(vianpx -y modern-web-guidance@latest retrieve "adapt-scrollbar-to-contrast-preferences").
Baseline status for Small, large, and dynamic viewport units: Widely available. It's been Baseline since 2022-12-05. Supported by: Chrome 108 (Nov 2022), Edge 108 (Dec 2022), Firefox 101 (May 2022), and Safari 15.4 (Mar 2022).
- Use
dvh/dvwfor mobile layout containers that must account for browser UI shifting (URL bar collapse/expand). - Don't use
100vwfor full-width layout — it ignores scrollbar width and causes horizontal overflow. Use100%,100dvw, or100svwinstead.
For the full viewport unit reference (
svh,lvh,dvi,dvb, etc.), seecss(vianpx -y modern-web-guidance@latest retrieve "css").
Masonry is not natively supported by any major browser yet.
The spec is in development. The currently agreed-upon name is "grid lanes" (e.g., display: grid-lanes). Firefox ships grid-template-rows: masonry behind a flag; no other engines ship it in stable as of this writing.
Do:
- Use grid with
grid-auto-flow: densefor tight packing today, accepting that DOM order may not match visual order. - Use multi-column (
columns: 3; column-gap: 1rem) for content-heavy masonry-like flow when items are document fragments rather than equal-weight cards. - Treat
grid-template-rows: masonryas a progressive enhancement only — feature-detect with@supports.
Do not:
- Don't ship
grid-template-rows: masonryas a hard requirement until your Baseline target catches up.
.gallery { columns: 3 200px; column-gap: 1rem; }
.gallery > * { break-inside: avoid; margin-block-end: 1rem; }
@supports (grid-template-rows: masonry) {
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-template-rows: masonry;
gap: 1rem;
columns: unset;
}
}