div block
(set Overflow: Hidden
) containing a horizontally scrolling inner div
using Flexbox (Row)
with a width larger than its parent.div
, adding a "While scrolling in view"
trigger, and applying an "Element Move"
animation on the X-axis.scrollLeft
property of the .scroll-container
.To enable horizontal scrolling when the user scrolls over a specific div
in Webflow, follow these steps:
div block
that will contain the horizontally scrolling content.Overflow
to Hidden
in the Style panel to prevent unwanted scrolling.div
, add another div
that will contain the content you want to scroll horizontally.div
to Flexbox > Direction: Row
and ensure its Width
is larger than the parent container to allow scrolling.Interactions
(lightning icon) in the Webflow panel.Scroll Progress
to control how far the element moves based on scroll position.If you want a smoother scroll effect, you can add custom JavaScript:
Go to the Page Settings
and paste this inside the Footer Code section:
```
```
Make sure your outer div
has the correct class (.scroll-container
in this example).
To enable horizontal scrolling over a div
in Webflow, use flexbox for layout, apply scroll interactions, and optionally add JavaScript for event manipulation. This creates a smooth experience where users can scroll horizontally using the mouse wheel.