The overflow declaration

Back to the index.

The overflow declaration tells the browser what to do with content that doesn't fit in a box. This assumes the box has a height: if it doesn't, it becomes as high as necessary to contain its contents, and the overflow declaration is useless.

You can assign four values to overflow and they should give the following results:

  1. visible: the content flows out of the box.
  2. hidden: the overflowing content is completely hidden, not accessible to the user.
  3. auto: show scrollbars where necessary (horizontal or vertical or both).
  4. scroll: always show horizontal and vertical scrollbars, regardless of whether they're necessary. This value is never used; you generally want auto.
  5. overlay: non-standard value only supported by the WebKit-browsers that does the same as auto.

Test

Test overflow by changing its value for the test element.

This is the test element. It has the following styles:
width: 30em;
height: 5em;
padding: 1em;
border: 1px solid #cc0000;
One more line of text

 

 

overflow: visible and IE6

IE6 and lower implements overflow: visible incorrectly.

The correct behaviour is that the element with overflow: visible becomes as high and wide as the CSS orders, and that any content that doesn't fit spills out of the box, overlapping, if necessary, the content that follows.

Instead, IE6 stretches up any element with overflow: visible until the content fits in it. Effectively height serves as min-height.

IE6's implementation of overflow: visible