overflow Property - Javascript CSS Style Property

Javascript examples for CSS Style Property:overflow

Description

The overflow property sets or gets what to do with overflowed content.

Property Values

Value Description
visible Content is not clipped, and may overlap other content. This is default value.
hidden Content that overflows the element's box is clipped and the rest of the content will be invisible.
scroll The overflowing content is clipped, but provides a scrolling mechanism to access the overflowed content.
autoIf content overflows the element's box it provides scrollbars to see the rest of the content.
initial Sets this property to its default value.
inherit take the value of its parent element overflow property.

Technical Details

Item Value
Default Value: visible?
Return Value: A String, representing the content that renders outside the element box
CSS VersionCSS2

Use the overflow property to scroll overflowing content:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {/* ww w. ja v a  2s. com*/
    border: 1px solid black;
    background-color: lightblue;
    width: 200px;
    height: 210px;
}
</style>
</head>
<body>

<button onclick="myFunction()">Test</button>

<div id="myDIV">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.
</div>

<script>
function myFunction() {
    document.getElementById("myDIV").style.overflowY = "scroll";
}
</script>

</body>
</html>

Related Tutorials