

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Values of CSS overflow property
CSS provides a property called overflow that tells the browser what to do if the box's contents are larger than the box itself.
The following are the values of overflow property −
Value | Description |
---|---|
Visible | Allows the content to overflow the borders of its containing element. |
Hidden | The content of the nested element is simply cut off at the border of the containing element and no scrollbars are visible. |
Scroll | The size of the containing element does not change, but the scrollbars are added to allow the user to scroll to see the content. |
auto | The purpose is the same as a scroll, but the scrollbar will be shown only if the content does overflow. |
- Related Questions & Answers
- CSS text-overflow property
- Working with CSS Overflow Property
- CSS overflow: visible
- CSS overflow: hidden
- CSS overflow: scroll
- CSS overflow: auto
- CSS overflow-y
- CSS overflow-x
- HTML DOM Style overflow Property
- CSS object-fit Property Values
- Values for the CSS cursor property
- Perform calculations to determine CSS property values
- CSS Latest Updates - Inner & Outer Values of display Property
- Cursor property of CSS
- Heap overflow and Stack overflow
Advertisements