VOOZH about

URL: https://www.geeksforgeeks.org/html/html-dom-scrollwidth-property/

⇱ HTML DOM scrollWidth Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML DOM scrollWidth Property

Last Updated : 30 Jun, 2023

The DOM scrollWidth property is used to return the width of an element. This property includes padding and also content that is not visible on the screen due to overflow but does not include a border, scrollbar, or margin. It is a read-only property. 

Syntax:

element.scrollWidth

Return Value: It returns the width of the content of the element in pixels. 

Example: In this example, we will use the scrollWidth property.

Output: 

👁 Image

Supported Browsers: The browser supported by DOM scrollWidth property are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 5
  • Firefox 1
  • Opera 12.1
  • Safari 1
Comment
Article Tags: