I want to hide the browser scrollbars. Is there a way to do that using JavaScrip开发者_如何学运维t or CSS?
No JavaScript needed:
body {
overflow: hidden;
}
I want to hide the browser scrollbars. Is there a way to do that using JavaScrip开发者_如何学运维t or CSS?
No JavaScript needed:
body {
overflow: hidden;
}
精彩评论