Front-end devs: do you set "scroll" on the vertical overflow to avoid page shift?
For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Nadia Makarevich -
Rowsan Ali -
Michael Tharrington -
Luca Liu -
Top comments (1)
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;
}