overflow-x: hidden
to <body>
and <html>
in Webflow and custom CSS.100vw
width; use width: 100%
or max-width: 100vw
instead.A persistent horizontal overflow issue in Webflow usually happens due to elements exceeding the viewport width. Even if you’ve set overflow: hidden
, certain elements or interactions may still cause this. Here’s how to troubleshoot and fix it.
CMD + Shift + X
(Mac) or CTRL + Shift + X
(Windows) to quickly inspect any elements extending beyond the viewport.F12
or Right Click > Inspect
), then look for any elements exceeding 100vw
.overflow: hidden
on the body
and html
<body>
) Element in Webflow.overflow: hidden
via the Style Panel under “Layout.”html
element using custom CSS:<style>
tags in the <head>
section:100vw
Width100vw
, but this doesn’t account for vertical scrollbars, causing slight horizontal overflow.width: 100%
(prevents extending beyond the body).max-width: 100vw
(ensures limits on extra-wide elements).margin-left: -Xpx
), which might push sections off-screen.div
with overflow: hidden
.min-width: auto
on child elements, which may cause unexpected extra width.To fix the horizontal overflow issue:
overflow-x: hidden
to the <body>
and <html>
elements.width: 100%
or max-width: 100vw
, not just 100vw
.If the issue persists, try removing elements one by one to isolate the problematic component.