The item()
method of the StyleSheetList
interface returns a single CSSStyleSheet
object.
The item()
method of the StyleSheetList
interface returns a single CSSStyleSheet
object.
js
item(index)
index
An integer which is the index of the item in the collection to be returned.
A CSSStyleSheet
object, or null
if one does not exist for this index.
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)); }
Specification |
---|
CSS Object Model (CSSOM) # dom-stylesheetlist-item |
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 | 1 | 4 | ≤12.1 | 1 | 4.4 | 18 | 4 | ≤12.1 | 1 | 1.0 |
© 2005–2023 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