Paul Posted on Feb 9, 2018 Poll: body overflow #css #overflow #discuss Front-end devs: do you set "scroll" on the vertical overflow to avoid page shift? Top comments (1) Subscribe Collapse Expand Mohcin Bounouara Mohcin Bounouara Mohcin Bounouara Follow Write code, talk about it.. just trying to imagine and build Location Morocco Work Software Developer Joined Jun 29, 2017 • Mar 17 '18 Dropdown menu Copy link Hide 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; } Code of Conduct • Report abuse For further actions, you may consider blocking this person and/or reporting abuse
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;
}