lukehaas / Scrollify

A jQuery plugin that assists scrolling and snaps to sections.
MIT License
1.81k stars 577 forks source link

Scrollbars false does not work if html has overflow-y: scroll; #331

Open danyj opened 6 years ago

danyj commented 6 years ago

Because of overflow-y: scroll;on an html scrollbar:false does not work

html {
    overflow-y: scroll;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

When removed the scrollbar is gone and it leaves the gap of the scrollbar http://prntscr.com/kc97qx

only way to remove it is if I set overflow-y: hidden;