why would someone write overflow: hidden on <html> tag

css, html

Solution

You would use `overflow:hidden` when you have dynamic, responsive content, for the most part, or at least, that is what I use it for. For example, if you have a page with content that grows in height as you shrink the page, you may want to just hide whatever is not visible in the regular height of the div

Problem

I was reading source code of an template and i got code ``` <html class="js" style="overflow: hidden"> ``` My question is why would someone will apply `overflow:hidden` on html tag. what benefit it will give.`

Original source