Reputation: 71
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
Reputation: 43441
To hide scrollbar use overflow: hidden
body {
overflow: hidden;
}
Upvotes: 1