StyleSheetList: item() method
The item() method of the StyleSheetList interface returns a single CSSStyleSheet object.
Syntax
js
item(index)
Parameters
index-
An integer which is the index of the item in the collection to be returned.
Return value
A CSSStyleSheet object, or null if one does not exist for this index.
Examples
In the following example, a for loop prints each individual CSSStyleSheet object to the console, by calling item with the value of i.
js
let list = document.styleSheets;
for (let i = 0; i < list.length; i++) {
console.log(list.item(i));
}
Specifications
| Specification |
|---|
| CSS Object Model (CSSOM) # dom-stylesheetlist-item |
Browser compatibility
BCD tables only load in the browser