From the W3C Website
In the absolute positioning model, a box is explicitly offset with respect to its containing block. It is removed from the normal flow entirely (it has no impact on later siblings).
But when I position an element absolutely, and it's overflowing outside of the view, it creates a horizontal scrollbar. Why? Am I understanding the specs wrong?
And is there a way to prevent this scrollbar from appearing without using overflow-x: hidden;
on the body element?