scroll-wrapper
with overflow-x: scroll
and white-space: nowrap
, and a scroll-track
using flex row to hold scrollable items.To build a horizontal scrolling section in Webflow that’s seamless across scroll, cursor drag, and touch swipe, and hides scrollbars in all modern browsers, follow the steps below.
horizontal-scroll-section
.scroll-wrapper
.scroll-track
to hold the horizontally arranged content.scroll-track
, add your scrollable child items.scroll-wrapper
:scroll-track
:Webflow doesn’t have full visual support to hide all scrollbars, so use embedded CSS:
Go to Page Settings > Custom Code > Inside Head
Insert the following inline:
```html
```
Webflow doesn’t natively support horizontal dragging with mouse cursor, so use a small custom script. Paste this in Page Settings > Footer Custom Code:
```html
```
Build a horizontally scrolling section with:
overflow-x: scroll
and white-space: nowrap
,This setup provides a user-friendly horizontal scrolling experience optimized for scroll wheel, mouse drag, and touch swipe—without visible scrollbars.