This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
The CSS overflow property controls what happens to content that is too big to fit into an area.
The
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:Note: The
Note: In OS X Lion (on Mac), scrollbars are hidden by default
and only shown when being used (even though "overflow:scroll" is set).
By default, the overflow is
, meaning that it is not clipped and it renders outside the element's box:
div { width: 200px; height: 50px; background-color: coral; overflow: visible; }
With the
value, the overflow is clipped, and the rest of the content is hidden:div { width: 200px; height: 50px; background-color: coral; overflow: hidden; }
Setting the value to
, 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):div { width: 200px; height: 50px; background-color: coral; overflow: scroll; }
The
value is similar to , but it adds scrollbars only when necessary:div { width: 200px; height: 50px; background-color: coral; overflow: auto; }
The
and properties specifies whether to change the overflow of content just horizontally or vertically (or both):
specifies what to do with the top/bottom
edges of the content.
div { width: 200px; height: 50px; background-color: coral; overflow-x: hidden; /* Hide horizontal scrollbar */ overflow-y: scroll; /* Add vertical scrollbar */ }
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 |