StyleSheetList.item()
The item()
method of the StyleSheetList
interface returns a single CSSStyleSheet
object.
Syntax
StyleSheetList.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
.
let list = document.styleSheets; for (let i = 0; i < list.length; i++) { console.log(list.item(i)); }
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
item |
1 |
12 |
31 |
4 |
Yes |
1 |
Yes |
Yes |
31 |
Yes |
1 |
Yes |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/StyleSheetList/item