All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLStyleElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

package org.w3c.dom.html;

import org.w3c.dom.*;

/**

  

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.


Property Summary
 disabled getDisabled setDisabled

Enables/disables the style sheet.

 media getMedia setMedia

Designed for use with one or more target media. See the media attribute definition in HTML 4.0.

 type getType setType

The style sheet language (Internet media type). See the type attribute definition in HTML 4.0.

  */ public interface HTMLStyleElement extends HTMLElement { /** Assigns the value of the disabled property. */ void setDisabled (boolean disabled); /** * Returns the value of the disabled property. */ boolean getDisabled (); /** Assigns the value of the media property. */ void setMedia (String media); /** * Returns the value of the media property. */ String getMedia (); /** Assigns the value of the type property. */ void setType (String type); /** * Returns the value of the type property. */ String getType (); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy