Webflow has boundaries but here we’re rather facing responsivity limitations.
In our modern design world, we talk about user experience and responsivity, which don’t always have a reason to coexist. When that happens, don’t fight.
There are issues like background videos, who can be fixed with responsivity by duplicating elements, but there’s one thing that’s hard to fight: the fact that the landscape tablet breakpoint is… the desktop breakpoint.
When you reach such issues, and you still want to procure a real fine tuned UX, then you need a little bit more technology to make sure mobile visitors get a mobile experience.
In Webflow, at page level, you can use a script to redirect mobile users to a page especially crafted for mobile viewing.
<script>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
window.location.replace("/mobile-version-of-page");
}
</script>
I use this on one site and it works pretty well. of course this is a nice solution for a one-pager, a lot less nice one for a 40+ pages website.