Responsive Breakpoint Helper

Reference table of CSS framework breakpoints, px/em/rem converter, and CSS media query generator.

CSS Framework Breakpoints

Min-width values (px) at which each breakpoint activates. — means the breakpoint is not defined.

Framework xs sm md lg xl 2xl
Tailwind CSS 640px 768px 1024px 1280px 1536px
Bootstrap 5 <576px 576px 768px 992px 1200px 1400px
Material UI 0px 600px 900px 1200px 1536px
Bulma 769px 1024px 1216px 1408px
Foundation 640px 1024px 1200px

px / em / rem Converter

Convert between pixel, em, and rem values. Adjust the base font size to match your project.

px
16px
em
1em
rem
1rem

Media Query Generator

Enter min and/or max widths in pixels to generate a CSS media query string.

Copied!

Summary

Reference table of CSS framework breakpoints, px/em/rem converter, and CSS media query generator.

How it works

  1. The breakpoint table lists min-width values for xs through 2xl across five major CSS frameworks.
  2. The converter takes a numeric value and a unit (px, em, or rem), then calculates the equivalent in the other two units using the base font size.
  3. The media query generator accepts a min-width and an optional max-width in pixels, then outputs the complete @media rule with a copy button.

Use cases

  • Check which breakpoint maps to a specific pixel width across Tailwind, Bootstrap, and other frameworks.
  • Convert a designer's pixel spec to rem values before writing CSS.
  • Generate a scoped media query for a component without memorising exact syntax.
  • Compare Bootstrap 5 and Tailwind breakpoints side by side when migrating between frameworks.

Frequently Asked Questions

Last updated: 2026-07-01 · Reviewed by Nham Vu