nolbadi111
nolbadi111

Reputation: 71

webView, viewport, how hide scrollbar which shows when scrolling?

I am making webView application using sass, java gwt and i have problem with scrollbar. When scrolling down scrollbar shows, but I want to it make it invisible. Selectors like:

::-webkit-scrollbar { 
display: none; }

doesn't work...

Upvotes: 1

Views: 234

Answers (1)

Justinas
Justinas

Reputation: 43441

To hide scrollbar use overflow: hidden

body {
    overflow: hidden;
}

Upvotes: 1

Related Questions