The overflow property specifies whether to clip the content or to add scrollbars when the content of an element is too big to fit in the specified area.

The overflow property has the following values:

Ex:

.box {
  width: 200px;
  height: 200px;
  border: 3px solid gold;

  /* set overflow property to 'auto' */
  overflow: auto;
}

==Note: The overflow property only works for block elements with a specified height.==

==Note: In OS X Lion (on Mac), scrollbars are hidden by default and only shown when being used (even though “overflow:scroll” is set).==