+++ date = "2022-06-11T00:22:48+00:00" lastmod = "2022-06-11T00:22:48+00:00" tags = [ "webdev", "gists" ] author = "tdro" +++ One way to remove multi--page transition jank is to force a permanent scrollbar. Are there any kindred spirits? Yes --- there's [a kindred spirit](https://nsilvestri.me/blog/permanent_scrollbar/). Overflows may disable descending `position: sticky` behavior. Avoid that problem with other [jank removal techniques](https://km.kkrach.de/p_jumping_scrollbar_issue/). ```css html { overflow-y: scroll; } body { overflow-y: scroll; } ```