Is there a way to hide the browser scrollbar on just one page of a website without affecting other pages? I have only been able to hide the scrollbar using
body::-webkit-scrollbar {
display: none;
}
However, this code hides the scrollbar for the entire site.