Dart API Referencedart:htmlStyleSheet

StyleSheet Interface

An object implementing the StyleSheet interface represents a single style sheet.  CSS style sheets will further implement the more specialized CSSStyleSheet interface.

Subinterfaces

CSSStyleSheet

Fields

Code bool disabled #

This property indicates whether the current stylesheet has been applied or not.
bool disabled;

Code final String href #

Returns the location of the stylesheet.
final String href;

Code final MediaList media #

Specifies the intended destination medium for style information.
final MediaList media;

Code final Node ownerNode #

Returns the node that associates this style sheet with the document.
final Node ownerNode;

Code final StyleSheet parentStyleSheet #

Returns the stylesheet that is including this one, if any.
final StyleSheet parentStyleSheet;

Code final String title #

Returns the advisory title of the current style sheet.
final String title;

Code final String type #

Specifies the style sheet language for this style sheet.
final String type;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.