All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.dom.html.HTMLStyleElement
- public interface HTMLStyleElement
- extends HTMLElement
Style information. A more detailed style sheet object model
is planned to be
defined in a separate document. See the STYLE element definition in HTML 4.0.
-
getDisabled()
- Enables/disables the style sheet.
-
getMedia()
- Designed for use with one or more target media.
-
getType()
- The style sheet language (Internet media type).
-
setDisabled(boolean)
-
-
setMedia(String)
-
-
setType(String)
-
getDisabled
public abstract boolean getDisabled()
- Enables/disables the style sheet.
setDisabled
public abstract void setDisabled(boolean disabled)
getMedia
public abstract String getMedia()
- Designed for use with one or more target media. See the media attribute definition in HTML 4.0.
setMedia
public abstract void setMedia(String media)
getType
public abstract String getType()
- The style sheet language (Internet media type). See the type attribute definition in HTML 4.0.
setType
public abstract void setType(String type)
All Packages Class Hierarchy This Package Previous Next Index