This page is In Progress

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

styleSheets

Summary

A collection of the document’s stylesheets.

Properties

No properties.

Methods

No methods.

Events

No events.

Examples

This example shows how to display the titles of the style sheets in the document.

for ( i = 0; i < document.styleSheets.length; i++ )
{
    alert("Style sheet " + i + " is titled " + document.styleSheets(i).title);
}

Notes

Remarks

Style sheets that are imported using the @import rule and are contained within the style object are available through the imports collection.

Attributions