Reputation: 33
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
Reputation: 129
Try this
body{
overflow: hidden !important;
background-size: cover;
height: 100vh; // or height:100%;
}
Upvotes: 1