0

Whenever I Try to use

div {
   overflow: hidden;
}

scrolling using mouse doesn't work anymore, all I can do to scroll is using Buttons or tags

I tried to make scrolling possible without scroll at the right side of website because it makes everything ugly, for every help I'm very thankful

  • Does this answer your question? [Hide scroll bar, but while still being able to scroll](https://stackoverflow.com/questions/16670931/hide-scroll-bar-but-while-still-being-able-to-scroll) – Cornel Raiu Nov 30 '22 at 14:36

1 Answers1

0

Problem Solved And fixed for people encountering this problem theres the solution:

html {
   overflow: scroll;
   overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 0px;
}

body::-webkit-scrollbar-thumb {
    background: #FF0000;
}

It worked for me perfectly