A specific viewport width at which a website's layout changes to accommodate different screen sizes. Defined in CSS using media queries.
A common breakpoint set at 768px causes a desktop three-column grid to collapse to a single-column mobile layout.
As of 2024, mobile devices account for approximately 60% of global web traffic, making breakpoint design for small screens a primary concern, not an afterthought — according to Statcounter GlobalStats.
Media query breakpoint, Responsive threshold
-
Every website built with responsive design — which should be every website. Breakpoints are defined in CSS and configured visually in design tools like Figma and Webflow.
@media (max-width: 768px) { ... }min-width queries — start with mobile styles as the default, then add complexity at larger breakpoints.Webflow provides five built-in breakpoints accessible via the toolbar: Desktop (default), Tablet, Mobile Landscape, Mobile Portrait, and an optional Large Desktop. Styles set at a larger breakpoint cascade down to smaller ones unless overridden. Always design and test at every breakpoint before publishing.
Answer