You are here: Reference > JavaScript > client-side > style handling > properties > overflowX

overflowX style property

Browser support:
3.510
Specifies or returns what to do with content that exceeds the element's width.
If the width of an element is set and the contents of the element are wider than the specified area, then the overflowX property provides you control over how the overflowed content is handled.
Note: The overflowX property is supported in Firefox from version 3.5, and in Opera from version 10.
In earlier versions of Firefox and Opera, use the overflow property instead.

Syntax:

object.overflowX;
You can find the related objects in the Supported by objects section below.
This property is read/write.
CSS page for this property: overflow-x

Possible values:

The type of this property is string.
 One of the following values: 
-webkit-marquee
The contents scroll inside the element's box.
auto
Horizontal content is clipped and scroll bars are added when necessary.
hidden
Horizontal content outside the element's box is not shown.
overlay
Content is clipped and scroll bars are added when necessary.
scroll
Horizontal content is clipped when necessary, but horizontal scroll bar is always added.
visible
Default. Horizontal content is not clipped.
Default: visible.

Example HTML code 1:

This example illustrates the use of the overflow-x property:
<head>
    <style>
        .example {
            overflow-x: scroll;
            background-color: #F9F9F9;
            width: 200px;
            height: 50px;
        }
    </style>
</head>
<body>
    <div class="example">
        The overflow-x property determines what to do with the horizontal content outside the element's rendering area.
    </div>
</body>
Did you find this example helpful? yes no

Example HTML code 2:

This example illustrates the use of the overflowX property in JavaScript:
<head>
    <style>
        .example {
            overflow: scroll;
            background-color: #F9F9F9;
            width: 200px;
            height: 50px;
        }
    </style>

    <script type="text/javascript">
        function ChangeOverflow (selectTag) {
            // Returns the index of the selected option
            var whichSelected = selectTag.selectedIndex;

            // Returns the text of the selected option
            var overflowValue = selectTag.options[whichSelected].text;

            var div = document.getElementById ("myDiv");

            if ('overflowX' in div.style) {
                div.style.overflowX = overflowValue;
            } else {
                alert ("Your browser doesn't support this example!");
            }
        }
    </script>
</head>
<body>
    <div class="example" id="myDiv">
        The overflowX property determines what to do with the horizontal content outside the element's rendering area.
    </div>

    <select onchange="ChangeOverflow (this);" size="4">
        <option />auto
        <option />hidden
        <option selected="selected" />scroll
        <option />visible
    </select>
</body>
Did you find this example helpful? yes no

Supported by objects:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content