To implement a custom horizontal scrollbar in Webflow like the one shown in your image, you’ll need to style a horizontal scrollable section and modify the scrollbar appearance using custom CSS embedded in Webflow.
Div Block and name it something like “Scroll Wrapper.”Overflow to Scroll and choose Display: Flex with Direction: Horizontal (Row).White Space to No Wrap if you're using text or other inline elements.
Webflow’s built-in controls don’t style native scrollbars, but you can add custom styles using custom code in the Page Settings or via an Embed element.
<style> tag in the Before </head> area.
```
<style>
.scroll-wrapper::-webkit-scrollbar {
height: 8px;
}
.scroll-wrapper::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 4px;
}
.scroll-wrapper::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 4px;
border: 2px solid #f0f0f0;
}
.scroll-wrapper::-webkit-scrollbar-thumb:hover {
background-color: #555;
}
</style>
```
```
.scroll-wrapper {
scroll-behavior: smooth;
}
```
You can add this rule in the same <style> tag block or by setting it within Webflow’s Custom Code Embed.
Overflow-Y: hidden-webkit-overflow-scrolling: touch; in custom code if needed
To achieve a custom horizontal scrollbar in Webflow:
This gives you full visual control over the horizontal scrollbar’s appearance to match your reference image.