CSS Layout - Overflow


The CSS overflow property controls what happens to content that is too big to fit into an area.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tenetur molestias maiores dicta officiis molestiae, consectetur voluptas consequuntur, neque, soluta aperiam in perferendis alias ex, veritatis obcaecati nisi aut animi laboriosam iste mollitia fugiat vero illo. Commodi eum, sint pariatur, tempora illo totam nemo, laborum possimus odio eos incidunt aliquid neque cupiditate veniam modi. Earum possimus debitis tempora ipsum nemo vitae voluptatibus, culpa repellat incidunt harum laboriosam fuga unde molestias suscipit ad deleniti non, animi minus pariatur veniam ut, reprehenderit iure enim deserunt! Amet dolorum minima recusandae quidem, quaerat. Voluptatem similique explicabo beatae eos laboriosam fugit recusandae cupiditate, consectetur dolor debitis, facere non. Ea, eos alias reprehenderit reiciendis tempora quia illum quo aspernatur sed dolores suscipit nam delectus at perferendis magni voluptatum laboriosam quas aperiam molestias, vero asperiores, necessitatibus ullam! Assumenda optio ex autem adipisci earum vel odit officia natus, quisquam delectus dolorem magnam sed veritatis ab perferendis iure suscipit similique rem provident, asperiores, quis architecto possimus. Molestias quas ad quibusdam sapiente est similique ut architecto ea dignissimos dolores commodi distinctio aspernatur veritatis dolorem magnam quaerat, aut, corrupti deleniti. Consectetur tempore officiis nostrum inventore porro repellendus architecto laudantium labore dolores aperiam est, atque, cum commodi molestias voluptatibus reiciendis. Velit voluptas repellendus esse nulla pariatur ratione consequuntur, quidem laborum minima reiciendis dolor saepe porro debitis modi earum soluta omnis ipsam neque quo iusto. Molestiae commodi asperiores quis eaque nobis in ducimus, mollitia modi ad natus. Repellendus ea maxime odit, perspiciatis consectetur minus praesentium, culpa cumque facere quas cupiditate consequatur, eum odio non sapiente. Animi sit obcaecati sunt id facilis dolorum corporis, inventore mollitia nemo nulla eveniet fugit ipsam, praesentium soluta quasi iure nisi quam ipsa saepe ratione, necessitatibus iusto adipisci. Rerum dolor voluptatem quas laborum saepe, et placeat assumenda nostrum soluta reiciendis. Unde accusantium temporibus placeat ipsa, sunt laboriosam tempora aut velit!

CSS Overflow

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:

  • visible - Default. The overflow is not clipped. The content renders outside the element's box
  • hidden - The overflow is clipped, and the rest of the content will be invisible
  • scroll - The overflow is clipped, and a scrollbar is added to see the rest of the content
  • auto - Similar to scroll, but it adds scrollbars only when necessary

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).


overflow: visible

By default, the overflow is visible, meaning that it is not clipped and it renders outside the element's box:

You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
div {
  width: 200px;
  height: 50px;
  background-color: #eee;
  overflow: visible;
}

overflow: hidden

With the hidden value, the overflow is clipped, and the rest of the content is hidden:

You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
div {
  overflow: hidden;
}

overflow: scroll

Setting the value to scroll, the overflow is clipped and a scrollbar is added to scroll inside the box. Note that this will add a scrollbar both horizontally and vertically (even if you do not need it):

You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
div {
    overflow: scroll;
}

overflow: auto

The auto value is similar to scroll, but it adds scrollbars only when necessary:

You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
div {
    overflow: auto;
}

overflow-x and overflow-y

The overflow-x and overflow-y properties specifies whether to change the overflow of content just horizontally or vertically (or both):

overflow-x specifies what to do with the left/right edges of the content.

overflow-y specifies what to do with the top/bottom edges of the content.

You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
div {
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Add vertical scrollbar */
}

All CSS Overflow Properties

Property Description
overflow Specifies what happens if content overflows an element's box
overflow-x Specifies what to do with the left/right edges of the content if it overflows the element's content area
overflow-y Specifies what to do with the top/bottom edges of the content if it overflows the element's content area