I have an issue regarding Media Queries for an iPad landscape breakpoint. My desktop page has horizontal scroll and some other animations and I don’t want those animations on the iPad in landscape mode. So basically, I just want to create another breakpoint for the iPad that has exactly the settings of my original tablet breakpoint. I know that I can use the media queries code from this article:
My question is: Where do I find the specific CSS for the tablet breakpoint and is there anything else that I have to consider?
The CSS media queries are all with your sites generated CSS. Open it up in dev tools and you can view it all.
TLDR;
/* Webflow default breakpoints */
@media screen and (max-width: 991px) {
/* Your responsive CSS */
}
@media screen and (max-width: 767px) {
/* Your responsive CSS */
}
@media screen and (max-width: 479px) {
/* Your responsive CSS */
}
Custom CSS can be added to a project. If you use an external CSS file the CSS won’t render in the designer. If you use a style block in an embed it will. As for the details that all depends.