Search


Search something to see results

CSSRule

A single CSS rule. There are several types of rules, listed in the Type constants section below.

MDN Reference

interface CSSRule {
    cssText: string;
    parentRule: null | CSSRule;
    parentStyleSheet: null | CSSStyleSheet;
    type: number;
    STYLE_RULE: 1;
    CHARSET_RULE: 2;
    IMPORT_RULE: 3;
    MEDIA_RULE: 4;
    FONT_FACE_RULE: 5;
    PAGE_RULE: 6;
    NAMESPACE_RULE: 10;
    KEYFRAMES_RULE: 7;
    KEYFRAME_RULE: 8;
    SUPPORTS_RULE: 12;
    COUNTER_STYLE_RULE: 11;
    FONT_FEATURE_VALUES_RULE: 14;
}

Index

Properties

Properties

cssText: string
parentRule: null | CSSRule
parentStyleSheet: null | CSSStyleSheet
type: number

MDN Reference

STYLE_RULE: 1
CHARSET_RULE: 2
IMPORT_RULE: 3
MEDIA_RULE: 4
FONT_FACE_RULE: 5
PAGE_RULE: 6
NAMESPACE_RULE: 10
KEYFRAMES_RULE: 7
KEYFRAME_RULE: 8
SUPPORTS_RULE: 12
COUNTER_STYLE_RULE: 11
FONT_FEATURE_VALUES_RULE: 14