- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS overflow: visible
In the CSS overflow property with value visible, the overflow is not clipped. This is the default. You can try to run the following code to implement CSS overflow: visible property:
Example
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; width: 250px; height: 30px; border: 2px solid blue; overflow: visible; } </style> </head> <body> <h1>Heading</h1> <div>Overflow property used here. This is a demo text to show the working of CSS overflow: visible.</div> </body> </html>
Output
- Related Articles
- CSS overflow: hidden
- CSS overflow: scroll
- CSS overflow: auto
- CSS overflow-y
- CSS overflow-x
- CSS text-overflow property
- Values of CSS overflow property
- Working with CSS Overflow Property
- How to Fix Overflow Issues in CSS Flex Layouts?
- Heap overflow and Stack overflow
- Heap overflow and Stack overflow in C
- Determine whether an element should be visible when not facing the screen with CSS
- jQuery :visible Selector
- Menu not visible in IE8. How to make it visible with HTML?
- Java overflow and underflow

Advertisements