Wizzi schema css

Element Tag Super Flags
css css
Description
The root element  
Attributes
Name Tag Type Default Inherited Flags Description
charset charset string string
useNormalize use-normalize boolean true
Relations
Name Role Cardinality Inherited Flags Description
resource resources one-to-many
rule rules one-to-many
comment comments one-to-many
Methods
Signature Statements
wzInitialize
if verify.isObject(this.extends);
findRuleBySelector
var ret = null;
foreach item in this.rules;
return ret;
Element Tag Super Flags
resource resource
Description
A known resource (a fragment of a stylesheet), stored in a repository,   that must be included in the generated artifact.  
Element Tag Super Flags
rule rule is-abstract
Description
The base abstract rule.   It has a child relation (one-to-many) with itself so one   can declare a tree of rules with unlimited deep.  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string
_ms__ -ms-* string string
_o__ -o-* string string
_moz__ -moz-* string string
___ --* string string
v__ v-* string string
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many
otherClassSelector otherClassSelectors one-to-many
otherAmpersandSelector otherAmpersandSelectors one-to-many
property properties one-to-many
rule rules one-to-many
Methods
Signature Statements
wzInitialize
log '*** rule.initialize.start', this.wzElement, this.wzName   log '*** rule.initialize.end', this.wzElement, this.wzName, 'this.parentRuleParts', this.parentRuleParts.join(',')  
set this.parentRuleParts = this.getAscendingRuleParts();
set this.canHaveContent = ['idRule', 'classRule', 'elementRule', 'gtRule', 'ampersand', 'placeholder'].indexOf(this.wzElement) > -1;
findRuleBySelector
if this.canHaveContent && this.getSelector() === name;
var ret = null;
foreach item in this.rules;
return ret;
hasContent
foreach item in this.rules;
return this.getProperties().length > 0;
getSelector
if final && this.wzElement === 'placeholder';
else ;
getProperties
var retval = [];
for var prop in this;
foreach prop in this.properties;
return retval;
getAscendingRuleParts
log '*** thisRuleParts 1', thisRuleParts.join(',')   log '*** thisRuleParts 2', thisRuleParts.join(',')  
var thisRuleParts = [];
if this.wzElement !== 'media';
if thisRuleParts.length > 0;
if this.wzParent && this.wzParent.getAscendingRuleParts;
else ;
Element Tag Super Flags
elementRule < rule
Description
The element rule   The wzName contain the selector(s)  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
classRule . rule
Description
The class rule   The wzName contain the selector(s)  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
idRule # rule
Description
The id rule   The wzName contain the selector(s)  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
gtRule > rule
Description
The > rule   The wzName contain the selector(s)  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
ampersand & rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
placeholder % rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
otherRuleSelector +
Description
The wzName contains other selector(s) to add to those of the parent rule.   In case of a rule with many selectors allow the declaration on many nodes.   Rules are joined comma separated.   Example   < td   + span   + li   + ...   for: td, span, li, ...  
Element Tag Super Flags
otherClassSelector +.
Description
The wzName contains a class selector to add to those of the parent rule.   Example   . container   +. item   + ...   for: .container, .item ...  
Element Tag Super Flags
otherAmpersandSelector +& rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
property @
Description
A generic rule property.   You should find a proper schema element that extends this one for every valid css3 property.   In any case this element is not abstract and can fit for missing properties.   In this case must contain a name-value pair separated by a blank: name is   the property name and value the property value.   ittf   . wrapper   @ webkit-super-exotic quark   css   .wrapper {   webkit-super-exotic: quark;   }  
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many Nested property  
Element Tag Super Flags
align_content align-content property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
align_items align-items property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
align_self align-self property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation animation property
Attributes
Name Tag Type Default Inherited Flags Description
delay delay string string
direction direction string string
duration duration string string
fill_mode fill-mode string string
iteration_count iteration-count string string
name name string string
play_state play-state string string
timing_function timing-function string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_delay animation-delay property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_direction animation-direction property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_duration animation-duration property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_fill_mode animation-fill-mode property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_iteration_count animation-iteration-count property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_name animation-name property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_play_state animation-play-state property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
animation_timing_function animation-timing-function property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
appearance appearance property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
azimuth azimuth property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
backdrop_filter backdrop-filter property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background background property
Attributes
Name Tag Type Default Inherited Flags Description
attachment attachment string string
color color string string
image image string string
position position string string
repeat repeat string string
blend_mode blend-mode string string
clip clip string string
origin origin string string
size size string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_attachment background-attachment property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_color background-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_image background-image property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_position background-position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_repeat background-repeat property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_blend_mode background-blend-mode property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_clip background-clip property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_origin background-origin property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
background_size background-size property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
backface_visibility backface-visibility property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border border property
Attributes
Name Tag Type Default Inherited Flags Description
collapse collapse string string
color color string string
spacing spacing string string
style style string string
top top string string
right right string string
bottom bottom string string
left left string string
top_color top-color string string
right_color right-color string string
bottom_color bottom-color string string
left_color left-color string string
top_style top-style string string
right_style right-style string string
bottom_style bottom-style string string
left_style left-style string string
top_width top-width string string
right_width right-width string string
bottom_width bottom-width string string
left_width left-width string string
width width string string
radius radius string string
top_left_radius top-left-radius string string
top_right_radius top-right-radius string string
bottom_left_radius bottom-left-radius string string
bottom_right_radius bottom-right-radius string string
image image string string
image_outset image-outset string string
image_repeat image-repeat string string
image_source image-source string string
image_slice image-slice string string
image_width image-width string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_collapse border-collapse property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_color border-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_spacing border-spacing property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_style border-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top border-top property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_right border-right property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom border-bottom property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_left border-left property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top_color border-top-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_right_color border-right-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom_color border-bottom-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_left_color border-left-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top_style border-top-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_right_style border-right-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom_style border-bottom-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_left_style border-left-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top_width border-top-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_right_width border-right-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom_width border-bottom-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_left_width border-left-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_width border-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_radius border-radius property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top_left_radius border-top-left-radius property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_top_right_radius border-top-right-radius property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom_left_radius border-bottom-left-radius property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_bottom_right_radius border-bottom-right-radius property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image border-image property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image_outset border-image-outset property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image_repeat border-image-repeat property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image_source border-image-source property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image_slice border-image-slice property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
border_image_width border-image-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
bottom bottom property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
box_sizing box-sizing property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
box_decoration_break box-decoration-break property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
box_shadow box-shadow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
break_after break-after property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
break_before break-before property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
break_inside break-inside property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
caption_side caption-side property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
caret_color caret-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
clear clear property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
clip clip property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
clip_path clip-path property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
color color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
columns columns property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_count column-count property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_fill column-fill property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_gap column-gap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_rule column-rule property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_rule_color column-rule-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_rule_style column-rule-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_rule_width column-rule-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_span column-span property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
column_width column-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
content content property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
counter_increment counter-increment property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
counter_reset counter-reset property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
cue_after cue-after property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
cue_before cue-before property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
cue cue property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
cursor cursor property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
direction direction property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
display display property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
elevation elevation property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
empty_cells empty-cells property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
filter filter property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex flex property
Attributes
Name Tag Type Default Inherited Flags Description
basis basis string string
direction direction string string
flow flow string string
grow grow string string
shrink shrink string string
wrap wrap string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_basis flex-basis property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_direction flex-direction property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_flow flex-flow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_grow flex-grow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_shrink flex-shrink property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
flex_wrap flex-wrap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
fill fill property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
xfloat float property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font font property
Attributes
Name Tag Type Default Inherited Flags Description
family family string string
size size string string
style style string string
variant variant string string
weight weight string string
kerning kerning string string
smooth smooth string string
stretch stretch string string
synthesis synthesis string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_feature_settings font-feature-settings property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_family font-family property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_kerning font-kerning property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_size font-size property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_style font-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant font-variant property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variation_settings font-variation-settings property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_weight font-weight property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_language_override font-language-override property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_optical_sizing font-optical-sizing property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_size_adjust font-size-adjust property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_smooth font-smooth property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_stretch font-stretch property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_synthesis font-synthesis property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_alternates font-variant-alternates property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_caps font-variant-caps property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_east_asian font-variant-east-asian property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_ligatures font-variant-ligatures property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_numeric font-variant-numeric property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant_position font-variant-position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variant font-variant property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
font_variation_settings font-variation-settings property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_template_columns grid-template-columns property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_template_rows grid-template-rows property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
gridTemplateAreas grid-template-areas property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Methods
Signature Statements
wzinitialize
var sb = [this.wzName];
foreach item in this.properties;
set this.wzName = sb.join(' ');
Element Tag Super Flags
grid grid property
Attributes
Name Tag Type Default Inherited Flags Description
column_gap column-gap string string
row_gap row-gap string string
gap gap string string
auto_columns auto-columns string string
auto_rows auto-rows string string
column_start column-start string string
column_end column-end string string
row_start row-start string string
row_end row-end string string
column column string string
row row string string
area area string string
template_columns template-columns string string
template_rows template-rows string string
template_areas template-areas string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_column_gap grid-column-gap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_row_gap grid-row-gap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_gap grid-gap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_auto_columns grid-auto-columns property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_auto_rows grid-auto-rows property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_auto_flow grid-auto-flow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_column_start grid-column-start property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_column_end grid-column-end property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_row_start grid-row-start property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_row_end grid-row-end property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_column grid-column property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_row grid-row property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
grid_area grid-area property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
hanging_punctuation hanging-punctuation property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
height height property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
hyphens hyphens property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
isolation isolation property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
justify_content justify-content property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
justify_items justify-items property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
justify_self justify-self property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
left left property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
letter_spacing letter-spacing property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
line_break line-break property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
line_height line-height property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
list_style_image list-style-image property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
list_style_position list-style-position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
list_style_type list-style-type property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
list_style list-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
margin_right margin-right property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
margin_top margin-top property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
margin_bottom margin-bottom property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
margin_left margin-left property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
margin margin property
Attributes
Name Tag Type Default Inherited Flags Description
top top string string
right right string string
left left string string
bottom bottom string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
mask_image mask-image property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
max_height max-height property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
max_width max-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
min_height min-height property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
min_width min-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
mix_blend_mode mix-blend-mode property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
nav_up nav-up property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
nav_down nav-down property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
nav_left nav-left property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
nav_right nav-right property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
opacity opacity property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
order order property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
orphans orphans property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
outline outline property
Attributes
Name Tag Type Default Inherited Flags Description
color color string string
style style string string
width width string string
offset offset string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
outline_color outline-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
outline_style outline-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
outline_width outline-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
outline_offset outline-offset property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
overflow overflow property
Attributes
Name Tag Type Default Inherited Flags Description
wrap wrap string string
x x string string
y y string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
overflow_wrap overflow-wrap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
overflow_x overflow-x property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
overflow_y overflow-y property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
padding_top padding-top property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
overscroll_behavior overscroll-behavior property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
scrollbar_color scrollbar-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
scrollbar_width scrollbar-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
padding_right padding-right property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
padding_bottom padding-bottom property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
padding_left padding-left property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
padding padding property
Attributes
Name Tag Type Default Inherited Flags Description
top top string string
right right string string
left left string string
bottom bottom string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
page_break_after page-break-after property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
page_break_before page-break-before property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
page_break_inside page-break-inside property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pause_after pause-after property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pause_before pause-before property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pause pause property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
perspective perspective property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
perspective_origin perspective-origin property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pitch_range pitch-range property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pitch pitch property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
play_during play-during property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
pointer_events pointer-events property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
position position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
quotes quotes property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
resize resize property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
richness richness property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
right right property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
scrollbar_width scrollbar-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
scroll_padding_top scroll-padding-top property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
speak_header speak-header property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
speak_numeral speak-numeral property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
speak_punctuation speak-punctuation property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
speak speak property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
speech_rate speech-rate property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
stress stress property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
stroke_width stroke-width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
tab_size tab-size property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
table_layout table-layout property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
target_name target-name property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
target_new target-new property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
target_position target-position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_align text-align property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_align_last text-align-last property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_decoration text-decoration property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_decoration_line text-decoration-line property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_decoration_style text-decoration-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_decoration_color text-decoration-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_decoration_skip text-decoration-skip property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_fill_color text-fill-color property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_indent text-indent property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_overflow text-overflow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_rendering text-rendering property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_shadow text-shadow property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_transform text-transform property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
text_underline_position text-underline-position property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
touch_action touch-action property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transform transform property
Attributes
Name Tag Type Default Inherited Flags Description
origin origin string string
style style string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transform_origin transform-origin property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transform_style transform-style property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transition transition property
Attributes
Name Tag Type Default Inherited Flags Description
delay delay string string
duration duration string string
property property string string
timing_function timing-function string string
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transition_delay transition-delay property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transition_duration transition-duration property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transition_property transition-property property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
transition_timing_function transition-timing-function property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
top top property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
unicode_bidi unicode-bidi property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
user_select user-select property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
vertical_align vertical-align property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
visibility visibility property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
voice_family voice-family property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
volume volume property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
white_space white-space property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
widows widows property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
width width property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
will_change will-change property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
word_break word-break property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
word_spacing word-spacing property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
word_wrap word-wrap property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
z_index z-index property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
zoom zoom property
Relations
Name Role Cardinality Inherited Flags Description
property properties one-to-many property Nested property  
Element Tag Super Flags
media media rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
keyframes keyframes rule
Attributes
Name Tag Type Default Inherited Flags Description
vendor vendor string string
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
keyframe keyframe rule
Attributes
Name Tag Type Default Inherited Flags Description
from from string string
to to string string
value value string string
_ % string string
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
fontface font-face rule
Attributes
Name Tag Type Default Inherited Flags Description
fontFamily font-family string string
src src string string
fontStretch font-stretch string string
fontFeatureSettings font-feature-settings string string
fontVariationSettings font-variation-settings string string
fontVariant font-variant string string
fontStyle font-style string string
fontWeight font-weight string string
unicodeRange unicode-range string string
fontDisplay font-display string string
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
extend extend|extend rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Methods
Signature Statements
wzInitialize
var root = this.wzRoot();
if !root.extends;
if !root.extends[this.wzName];
set root.extends[this.wzName].push(this);
Element Tag Super Flags
ximport import rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
include include rule
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule
Element Tag Super Flags
comment - rule
Description
The wzName is the comment text.  
Attributes
Name Tag Type Default Inherited Flags Description
_webkit__ -webkit-* string string rule
_ms__ -ms-* string string rule
_o__ -o-* string string rule
_moz__ -moz-* string string rule
___ --* string string rule
v__ v-* string string rule
Relations
Name Role Cardinality Inherited Flags Description
otherRuleSelector otherRuleSelectors one-to-many rule
otherClassSelector otherClassSelectors one-to-many rule
otherAmpersandSelector otherAmpersandSelectors one-to-many rule
property properties one-to-many rule
rule rules one-to-many rule