[Solved] Very long horizontal scroll to the left in my page [closed]


I’ve noticed you have left: -999em and some other declarations that pull your items way to the left. Usually this is done so the items are hidden from the viewport, which is fine.

To fix this issue, simply add overflow: hidden to your body {} in your stylesheet file, for example:

body { overflow: hidden; }

0

solved Very long horizontal scroll to the left in my page [closed]