Overflow

Use these shorthand utilities for quickly configuring how content overflows an element.

Overflow on Bootstrap

Example

Adjust the overflow property on the fly with four default values and classes. These classes are not responsive by default.

<div class="d-flex">
  <div class="overflow-auto">This is an example of using <code>.overflow-auto </code>on an element with set width and height dimensions. By design, this content will vertically scroll.</div>
  <div class="overflow-hidden">This is an example of using <code>.overflow-auto </code>on an element with set width and height dimensions. By design, this content will vertically scroll.</div>
  <div class="overflow-visible">This is an example of using <code>.overflow-visible </code>on an element with set width and height dimensions. By design, this content will vertically scroll.</div>
  <div class="overflow-scroll">This is an example of using <code>.overflow-scroll </code>on an element with set width and height dimensions. By design, this content will vertically scroll.</div>
</div>
This is an example of using .overflow-autoon an element with set width and height dimensions. By design, this content will vertically scroll.
This is an example of using .overflow-autoon an element with set width and height dimensions. By design, this content will vertically scroll.
This is an example of using .overflow-visibleon an element with set width and height dimensions. By design, this content will vertically scroll.
This is an example of using .overflow-scrollon an element with set width and height dimensions. By design, this content will vertically scroll.
On this page