Ron
Ron

Reputation: 33

Remove scrolling bar

How can I remove the scroll bar but still be able to scroll? I tried

body {
    overflow: hidden;
}

but that removes the whole scrolling function.. Any help?

Upvotes: 1

Views: 76

Answers (1)

Sowemimo Bamidele
Sowemimo Bamidele

Reputation: 129

Try this

body{
   overflow: hidden !important;
   background-size: cover;
   height: 100vh;      // or height:100%;
}

Upvotes: 1

Related Questions