org.w3c.dom.css
public interface: CSSValue [javadoc |
source]
All Known Implementing Classes:
CSSValueList, CSSPrimitiveValue, SVGColor, SVGPaint
The
CSSValue interface represents a simple or a complex
value. A
CSSValue object only occurs in a context of a CSS
property.
See also the Document Object Model (DOM) Level 2 Style Specification.
| Field Summary |
|---|
| public static final short | CSS_INHERIT | The value is inherited and the cssText contains "inherit". |
| public static final short | CSS_PRIMITIVE_VALUE | The value is a primitive value and an instance of the
CSSPrimitiveValue interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue interface. |
| public static final short | CSS_VALUE_LIST | The value is a CSSValue list and an instance of the
CSSValueList interface can be obtained by using
binding-specific casting methods on this instance of the
CSSValue interface. |
| public static final short | CSS_CUSTOM | The value is a custom value. |