Webflow does not provide a dedicated iPad Landscape breakpoint, but it does allow you to customize breakpoints manually. The default desktop breakpoint (≥ 992px) often applies to iPad landscape, but issues can arise depending on styles and layout settings.
1. Check Webflow’s Default Breakpoints
- Webflow's breakpoints:
- Desktop: ≥992px
- Tablet: ≥768px and <992px (covers iPad portrait)
- iPad landscape (1024px width) typically falls under desktop styles, but some differences may be due to browser rendering or specific CSS settings.
2. Use Webflow’s Larger Breakpoints
- Click on “Breakpoints” (top bar in Webflow Designer).
- Adjust styles for the 1280px or 1440px breakpoints to catch potential layout shifts.
- Styles applied here will affect iPad landscape if they trickle down.
- In Webflow Designer: Click the eye icon (Preview Mode) but note it does not have a built-in iPad landscape option.
- Using Google Chrome:
- Right-click on your page > Inspect (or press
Cmd + Shift + I
on Mac / Ctrl + Shift + I
on Windows). - Click Device Toolbar (small phone/tablet icon, top left of DevTools).
- Select iPad Pro or iPad (gen 7/8/9) and rotate to landscape.
4. Override Styles with Custom Code (If Needed)
- If design shifts occur only in iPad landscape (1024px width), use CSS overrides:
- Go to Project Settings > Custom Code > Inside
<style>
tags in the Head section. - Add custom styles targeting iPad landscape using:
```css
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
/_ Adjust styles here _/
}
```
Summary
Webflow does not provide a separate iPad landscape breakpoint, but it typically falls under desktop styles. Use breakpoints (1280px, 1440px) or Chrome DevTools to test, and apply CSS overrides if necessary.