The styleSheets
read-only property of the CSSStyleSheet
objects, for stylesheets explicitly linked into or embedded in a document.
The styleSheets
read-only property of the CSSStyleSheet
objects, for stylesheets explicitly linked into or embedded in a document.
The returned list is ordered as follows:
Link
headers are placed first, sorted in header order.function getStyleSheet(unique_title) {
for (const sheet of document.styleSheets) {
if (sheet.title === unique_title) {
return sheet;
}
}
}
Specification |
---|
Product helpstyleSheets read-only property of the Link headers are placed first, sorted in header order.js
Document() Instance properties
Instance methods
|