Skip to content
1440px

Foundation Breakpoints

The v6.8 defaults, the media queries they generate, and how they line up against real device widths.

Foundation v6.8 · mobile-first · em
640 · 1024 · 1200 · 1440

4 breakpoints from 640px to 1440px. Foundation is the notable holdout that defines breakpoints in em, which makes them respond to the user's browser font size.

Foundation v6.8 default breakpoints. "Devices ≥" counts how many of the 242 catalogued devices have a CSS viewport at least that wide.
NameValuePixelsMedia queryDevices ≥
small0(no media query — default)242
medium40em640@media screen and (min-width: 40em)99
large64em1024@media screen and (min-width: 64em)63
xlarge75em1200@media screen and (min-width: 75em)53
xxlarge90em1440@media screen and (min-width: 90em)38

Configuration

Foundation config
$breakpoints: (
  small: 0,
  medium: 640px,
  large: 1024px,
  xlarge: 1200px,
  xxlarge: 1440px,
);

How Foundation compares

Breakpoint comparison across 10 CSS frameworks — 13 shared widths
FrameworkUnit4805766006407689921024120012801440153616001920Only here
Tailwind CSSrem···smmd·lg·xl·2xl··
Bootstrappx·sm··mdlg·xl·····1400 xxl
MUI (Material UI)px··sm····lg··xl··900 md
Bulmapx······desktop······769 tablet, 1216 widescreen, 1408 fullhd
Foundationem···medium··largexlarge·xxlarge···
Chakra UIemsm···mdlg··xl·2xl··
Ant Designpx·sm··mdlg·xl···xxl·
Vuetifypx··sm·····lg···xl960 md, 2560 xxl
Material Design 3dp··Medium····Large···Extra-large·840 Expanded
Open Propsem--sm···--md·--lg··--xl··--xxl240 --xxs, 384 --xs

Questions

What are the default Foundation breakpoints?

Foundation v6.8 ships 5 tiers: small (0px), medium (640px), large (1024px), xlarge (1200px), xxlarge (1440px).

Are Foundation breakpoints min-width or max-width?

Foundation is mobile-first, so every breakpoint is a min-width query. Styles apply from that width upward.

How do I change the Foundation breakpoints?

Override them in the configuration — see the snippet on this page. Changing them is usually a mistake unless you have a concrete layout reason; the defaults are chosen to sit between real device clusters.

Why does Foundation use em?

Breakpoints in em respond to the user's browser font-size setting, so someone who has increased their default text size gets the layout that suits it. Pixel breakpoints ignore that preference.

Other frameworks

Values taken from the official Foundation documentation (https://get.foundation/sites/docs/media-queries.html), version v6.8, verified 2026-08-07.