dthomasen
dthomasen

Reputation: 826

Hide scrollbar in webview

How can I hide the scrollbar on Android Chrome/Chromium using CSS/Javascript?

I've tried:

document.documentElement.style.overflow = 'hidden';

Which works on Chrome for Windows, but it doesn't seem to do anything for Androids Chromium backed Webview.

Upvotes: 0

Views: 3087

Answers (1)

Bon Kho
Bon Kho

Reputation: 124

Try in CSS overflow: auto;overflow-y: hidden;

Upvotes: 1

Related Questions