Skip to content Skip to sidebar Skip to footer

Long Text Is Outside Of The Div

I've trying to make a test website, but there is a problem. Here's is a picture, which show you, what's the problem: The years (2010,2011,2012) are folders, and the '2013' folder

Solution 1:

Add overflow: auto; to your CSS for the div with overflowing content.

This property will automatically add a scroll bar only on necessary axes to help contain content within the boundaries of the div. So if you have too much vertical content, you get a vertical (y) scrollbar. If you have too much horizontal content, you get a horizontal (x) scrollbar.

Post a Comment for "Long Text Is Outside Of The Div"