DEV Community

Paul
Paul

Posted on

2 1

Poll: body overflow

Front-end devs: do you set "scroll" on the vertical overflow to avoid page shift?

Top comments (1)

Collapse
 
bn_geek profile image
Mohcin Bounouara β€’

To avoid this, overflow-y: scroll is correct, but if you still have the some problem you should use it on the html tag:
html {
overflow-y: scroll;
}

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay