Open danyj opened 6 years ago
Because of overflow-y: scroll;on an html scrollbar:false does not work
overflow-y: scroll;
scrollbar:false
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;
overflow-y: hidden;
Because of
overflow-y: scroll;
on an htmlscrollbar:false
does not workWhen 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;