Calculates the specificity of a conditional selector in a selector
chain. The total specificity is used to determine the precedence when
applying several matching style declarations. id conditions contribute
100 points, pseudo and class conditions each contribute 10 points.
Selectors with a higher specificity override selectors of lower
specificity. If selectors have equal specificity, the declaration order
determines the precedence (i.e. the last one wins).
Implementation public function get specificity():int
value
property
value:String [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 4
Runtime Versions :
Flash Player 10, AIR 1.5
The value of this condition without any CSS syntax. To get a String
representation that includes CSS syntax, call the toString() method.
Implementation public function get value():String
Constructor Detail
CSSCondition
()
Constructor
public function CSSCondition(kind:String, value:String)
Language Version :
ActionScript 3.0
Product Version :
Flex 4
Runtime Versions :
Flash Player 10, AIR 1.5
Constructor.
Parameters
kind:String — The kind of condition. For valid values see the
CSSConditionKind enumeration.
value:String — The condition value (without CSS syntax).