ZetCode

JavaScript scrollWidth

last modified April 2, 2025

In this article, we explore the scrollWidth property in JavaScript. This property is essential for measuring the full width of elements, including content that overflows and is not visible on the screen.

Basic Definition

The scrollWidth property returns the entire width of an element in pixels, including content that overflows and is not visible due to scrolling. It includes padding but excludes margins, borders, and scrollbars.

This property is read-only and returns an integer value representing the width. It's particularly useful when you need to determine if an element has overflow content or to measure the full width of scrollable content.

Basic scrollWidth Example

This example demonstrates how to get the scrollWidth of a simple div element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Basic scrollWidth</title>
    <style>
        #container {
            width: 200px;
            height: 100px;
            overflow-x: scroll;
            white-space: nowrap;
        }
    </style>
</head>
<body>

<div id="container">
    This is some very long content that will overflow the container width.
</div>

<script>
    const container = document.getElementById('container');
    console.log('Client width:', container.clientWidth);
    console.log('Scroll width:', container.scrollWidth);
</script>

</body>
</html>

In this example, we have a div with fixed width and overflow set to scroll. The JavaScript code logs both the clientWidth (visible width) and scrollWidth (full content width) to the console.

The scrollWidth will be larger than clientWidth when content overflows. This shows how scrollWidth measures the entire content width, not just the visible portion.

Detecting Overflow

This example shows how to use scrollWidth to detect if an element has overflow.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Detecting Overflow</title>
    <style>
        .box {
            width: 300px;
            border: 1px solid black;
            padding: 10px;
            margin-bottom: 10px;
        }
    </style>
</head>
<body>

<div id="box1" class="box">Short content</div>
<div id="box2" class="box">Very long content that should overflow the container width limit</div>

<script>
    function checkOverflow(elementId) {
        const box = document.getElementById(elementId);
        const hasOverflow = box.scrollWidth > box.clientWidth;
        console.log(`${elementId} has overflow: ${hasOverflow}`);
    }

    checkOverflow('box1');
    checkOverflow('box2');
</script>

</body>
</html>

Here we compare scrollWidth with clientWidth to determine if content overflows. The first box has short content, while the second has long content that overflows.

This technique is useful for responsive design where you need to adjust layouts based on content size. The comparison between scrollWidth and clientWidth is a reliable way to detect overflow conditions.

Horizontal Scrolling Indicator

This example creates a visual indicator showing how much content is scrolled.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Scrolling Indicator</title>
    <style>
        #scroller {
            width: 300px;
            overflow-x: scroll;
            white-space: nowrap;
        }
        #indicator {
            height: 5px;
            background: #ddd;
            margin-top: 5px;
        }
        #progress {
            height: 100%;
            width: 0;
            background: #4CAF50;
        }
    </style>
</head>
<body>

<div id="scroller">
    This is a very long horizontal content that requires scrolling to see it all.
</div>
<div id="indicator"><div id="progress"></div></div>

<script>
    const scroller = document.getElementById('scroller');
    const progress = document.getElementById('progress');
    
    scroller.addEventListener('scroll', function() {
        const scrollableWidth = scroller.scrollWidth - scroller.clientWidth;
        const scrollPercentage = (scroller.scrollLeft / scrollableWidth) * 100;
        progress.style.width = `${scrollPercentage}%`;
    });
</script>

</body>
</html>

This code creates a scrolling container and a progress indicator below it. As the user scrolls horizontally, the indicator shows how much content remains.

The scrollWidth property helps calculate the total scrollable width by subtracting the clientWidth. This creates a smooth scrolling experience with visual feedback for users.

Dynamic Content Measurement

This example shows how scrollWidth updates when content changes dynamically.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Dynamic Content</title>
    <style>
        #dynamicBox {
            width: 200px;
            border: 1px solid #ccc;
            padding: 10px;
            overflow-x: auto;
        }
    </style>
</head>
<body>

<div id="dynamicBox">Initial content</div>
<button onclick="addContent()">Add Content</button>
<p id="widthInfo">Current scrollWidth: 0px</p>

<script>
    function addContent() {
        const box = document.getElementById('dynamicBox');
        box.textContent += ' Adding more text to increase width. ';
        
        const info = document.getElementById('widthInfo');
        info.textContent = `Current scrollWidth: ${box.scrollWidth}px`;
    }
</script>

</body>
</html>

Each time the button is clicked, more content is added to the div. The scrollWidth is displayed and updates automatically as the content grows.

This demonstrates how scrollWidth is a live measurement that reflects the current state of the element's content. It's useful for tracking content size changes in dynamic applications.

Responsive Layout Adjustment

This example uses scrollWidth to adjust layout responsively based on content.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Responsive Adjustment</title>
    <style>
        #responsiveContainer {
            max-width: 400px;
            border: 1px solid black;
            padding: 10px;
            overflow-x: auto;
        }
        .wide {
            width: 100%;
        }
        .narrow {
            width: 50%;
            margin: 0 auto;
        }
    </style>
</head>
<body>

<div id="responsiveContainer">
    <p>Sample content that might be short or long depending on needs.</p>
</div>
<button onclick="toggleContent()">Toggle Content Length</button>

<script>
    const container = document.getElementById('responsiveContainer');
    let isLong = false;
    
    function toggleContent() {
        isLong = !isLong;
        container.innerHTML = isLong ? 
            '<p>' + 'Very long content '.repeat(20) + '</p>' : 
            '<p>Short content</p>';
            
        adjustLayout();
    }
    
    function adjustLayout() {
        if (container.scrollWidth > container.clientWidth) {
            container.classList.remove('narrow');
            container.classList.add('wide');
        } else {
            container.classList.remove('wide');
            container.classList.add('narrow');
        }
    }
    
    // Initial adjustment
    adjustLayout();
</script>

</body>
</html>

This code toggles between short and long content in a container. The layout adjusts based on whether the content overflows, using scrollWidth to make the decision.

This technique is valuable for creating responsive components that adapt to their content. The scrollWidth property enables intelligent layout decisions based on actual content dimensions.

Source

MDN scrollWidth Documentation

In this article, we have explored the scrollWidth property in JavaScript. This property is essential for measuring element content width and handling overflow scenarios in web development.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all JS DOM tutorials.