A common challenge with #CSS layouts is items that are too wide for the screen, causing horizontal scroll bars. The easy fix is to add overflow-x: auto;
to the layout.
But somebody posted once somewhere that you shouldn't do that, as the problem is with the wide element and not with the layout. By blocking scroll on the layout level, you're likely not going to notice that you're hiding content that way.
I didn't want to believe that, but it's been annoyingly consistently true for me!