::-webkit-scrollbar
targeting a scrollable div class.Webflow does not natively control Android-specific scrollbars, but you can influence scrollbar appearance and behavior using custom CSS and Webflow’s embed elements. Scrollbar styling is limited on Android (Chrome & WebView), but it’s possible to target them using WebKit pseudo-elements.
::-webkit-scrollbar
pseudo-elements.Example CSS you can use:
<style>/* Target webkit scrollbars (including Android Chrome) */.your-scroll-area::-webkit-scrollbar { width: 8px;}.your-scroll-area::-webkit-scrollbar-track { background: transparent;}.your-scroll-area::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, 0.3); border-radius: 10px;}</style>
.your-scroll-area
with a class you've applied to your scrollable div.scroll-box
) to the Div Block..scroll-box::-webkit-scrollbar
).Webflow does not offer native Android scrollbar styling, but you can use custom CSS via Embed code to target and style scrollbars using ::-webkit-scrollbar
. Apply the styles to scrollable elements and test on real devices to ensure compatibility.