Skip to content
1440px

Open Props Breakpoints

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

Open Props v1 · mobile-first · em
240 · 384 · 480 · 768 · 1024 · 1440 · 1920

7 breakpoints from 240px to 1920px. Open Props exposes breakpoints as custom media queries rather than utility class prefixes.

Open Props v1 default breakpoints. "Devices ≥" counts how many of the 242 catalogued devices have a CSS viewport at least that wide.
NameValuePixelsMedia queryDevices ≥
--xxs15em240@media (min-width: 15em)227
--xs24em384@media (min-width: 24em)182
--sm30em480@media (min-width: 30em)104
--md48em768@media (min-width: 48em)95
--lg64em1024@media (min-width: 64em)63
--xl90em1440@media (min-width: 90em)38
--xxl120em1920@media (min-width: 120em)10

Configuration

Open Props config
@import "open-props/media";

@media (--md-n-above) { /* 768px and up */ }

How Open Props 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 Open Props breakpoints?

Open Props v1 ships 7 tiers: --xxs (240px), --xs (384px), --sm (480px), --md (768px), --lg (1024px), --xl (1440px), --xxl (1920px).

Are Open Props breakpoints min-width or max-width?

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

How do I change the Open Props 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 Open Props 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 Open Props documentation (https://open-props.style/#media-queries), version v1, verified 2026-08-07.