Webflow Breakpoints

Learn how write custom CSS and JavaScript that respond to Webflow's breakpoints

View the DemosLearn More
1920px
1440px
1280px
Desktop
Tablet
Landscape
Portrait
WEBFLOW HACKS

Webflow Breakpoints

Change the screen width to see breakpoint sizes appear and disappear above in the reference diagram.

All 7 breakpoints are shown above, if the screen size allows.

WEBFLOW HACKS

Custom CSS Webflow breakpoints

It is possible to write breakpoint-specific custom CSS using the same approach that Webflow uses.

Here we start with the default base styles, which would appear at the desktop breakpoint, and then we progressively add media queries to override those styles at specific breakpoints.

For example here is a paragraph with custom breakpoint-specific CSS applied;

Breakpoint

In the code, you can see all of Webflow's breakpoints progressively applied.

Copy Code
WEBFLOW HACKS

Programming against Webflow breakpoints

You can also write custom Javascript that triggers as you enter or leave specific breakpoints.

This code sample defines Webflow's breakpoints, and calls a function whenever you enter a new breakpoint.

Or use the convenient breakpoints toolset built into Sygnal Attributes 5.
Copy Code