Go Back   Technology Forums > Computer Forums > HTML and CSS

Share your knowledge and questions, related to HTML and CSS in this forum.


CSS Overflow


Reply
 
LinkBack Thread Tools Search this Thread
  #1 (permalink)  
Old 02-25-2007, 09:03 AM
Administrator
 
Join Date: Dec 2006
Posts: 304
shri has disabled reputation
Default CSS Overflow

The overflow property is used to deal with how content that is larger than a defined box, is displayed.

The overflow property can be assigned the following values.

hidden: The content that overflows the box will be hidden.

auto: scrollbars will be displayed along the box if the content is larger than the box.

visible: the content is displayed outside the box model.

scroll: scrollbars are always shown, irrespective of the content being smaller or larger than the box model.

Example:

Code:
<html>
<head>
<title>Overflow Samples</title>
<style>

.overhidden {
        width: 100px;
        overflow: hidden;
        background: #000;
}
.overauto {
        width: 100px;
        overflow: auto;
        background: #000;
}
.overvisible {
        width: 100px;
        overflow: visible;
        background: #000;
}
.overscroll {
        width: 100px;
        overflow: scroll;
        background: #000;
}
</style>
</head>
<body>
Normal Image:<br>
<img src="http://www.devlib.org/images/logo.png"><br>

Overflow = hidden:<br>
<div class="overhidden">
<img src="http://www.devlib.org/images/logo.png">
</div>
Overflow = auto:<br>
<div class="overauto">
<img src="http://www.devlib.org/images/logo.png">
</div>
Overflow = visible:<br>
<div class="overvisible">
<img src="http://www.devlib.org/images/logo.png">
</div>
Overflow = scroll:<br>
<div class="overscroll">
<img src="http://www.devlib.org/images/logo.png">
</div>
</body>
</html>
Reply With Quote
Reply





Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Advanced Search

All times are GMT -6. The time now is 07:33 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.