# OverflowProps

**Kind:** Interface

Style props for the overflow behavior of an element.

## Properties

### `overflow?`

Type: `OptionalResponsiveProp<OverflowProperty>`

Sets what to do when an element's content is too big to fit in its block formatting context. It is a shorthand for `overflowX` and `overflowY`.

### `overflowX?`

Type: `OptionalResponsiveProp<OverflowYProperty>`

Sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.

### `overflowY?`

Type: `OptionalResponsiveProp<OverflowXProperty>`

Sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
