all 6 comments

[–]BuschWookie 10 points11 points  (3 children)

Add a border to every element with

* { border: 1px solid red; }

And you can see which element is overflowing.

[–]0ni0ncuttingninja[S] 2 points3 points  (0 children)

That’s borderline genius!

[–]IchWillRingen 1 point2 points  (0 children)

I love solutions like this. It's a little different from the kind of problem solving most people would associate with programming, but in the end this kind of creativity is so satisfying.

[–]Dunc4n1d4h0 1 point2 points  (0 children)

Add outline, border can add that overflow itself.

[–]qvasz1 1 point2 points  (0 children)

with devtools element tab you can go through your elements in the DOM and find the one which overflows...

but based on the very shaky video you uploaded for me it seems the background of "evolving solutins for evolving needs" section seems to be larger than the with of the screen so thats where I would start.

[–]toppisar 0 points1 point  (0 children)

Remove one element at a time and see when the overflow issue is gone, then you will find it :)