Front-end devs: do you set "scroll" on the vertical overflow to avoid page shift?
About: ✝️ Christian - 👨👩👧 Husband & father - ♿ Ally - 🏳️🌈 Ally - 🌐 Full-stack web developer
Front-end devs: do you set "scroll" on the vertical overflow to avoid page shift?
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;
}