Previously, my website was functioning perfectly in full screen mode. However, after updating Chrome on Android to the latest version (116.xxxxxx....), I noticed that it is now displaying a scrolling behavior that was not present in the earlier version (99.xxxxxx...).
I have tried various CSS solutions like the ones below.
html, body {
scroll-behavior: smooth;
overflow-x: hidden!important;
}
AND
html {
scroll-behavior: smooth;
overflow-x: hidden!important;
}
body {overflow-x: hidden;}
Has anyone encountered this issue before and have any ideas for a solution?