diff options
Diffstat (limited to 'vanilla/node_modules/mdn-data/css')
16 files changed, 15198 insertions, 0 deletions
diff --git a/vanilla/node_modules/mdn-data/css/at-rules.json b/vanilla/node_modules/mdn-data/css/at-rules.json new file mode 100644 index 0000000..30dc981 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/at-rules.json @@ -0,0 +1,504 @@ +{ + "@charset": { + "syntax": "@charset \"<charset>\";", + "groups": [ + "CSS Charsets" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@charset" + }, + "@counter-style": { + "syntax": "@counter-style <counter-style-name> {\n [ system: <counter-system>; ] ||\n [ symbols: <counter-symbols>; ] ||\n [ additive-symbols: <additive-symbols>; ] ||\n [ negative: <negative-symbol>; ] ||\n [ prefix: <prefix>; ] ||\n [ suffix: <suffix>; ] ||\n [ range: <range>; ] ||\n [ pad: <padding>; ] ||\n [ speak-as: <speak-as>; ] ||\n [ fallback: <counter-style-name>; ]\n}", + "interfaces": [ + "CSSCounterStyleRule" + ], + "groups": [ + "CSS Counter Styles" + ], + "descriptors": { + "additive-symbols": { + "syntax": "[ <integer> && <symbol> ]#", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "fallback": { + "syntax": "<counter-style-name>", + "media": "all", + "initial": "decimal", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "negative": { + "syntax": "<symbol> <symbol>?", + "media": "all", + "initial": "\"-\" hyphen-minus", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "pad": { + "syntax": "<integer> && <symbol>", + "media": "all", + "initial": "0 \"\"", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "prefix": { + "syntax": "<symbol>", + "media": "all", + "initial": "\"\"", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "range": { + "syntax": "[ [ <integer> | infinite ]{2} ]# | auto", + "media": "all", + "initial": "auto", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "speak-as": { + "syntax": "auto | bullets | numbers | words | spell-out | <counter-style-name>", + "media": "all", + "initial": "auto", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "suffix": { + "syntax": "<symbol>", + "media": "all", + "initial": "\". \"", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "symbols": { + "syntax": "<symbol>+", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "system": { + "syntax": "cyclic | numeric | alphabetic | symbolic | additive | [ fixed <integer>? ] | [ extends <counter-style-name> ]", + "media": "all", + "initial": "symbolic", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + } + }, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@counter-style" + }, + "@document": { + "syntax": "@document [ <url> | url-prefix(<string>) | domain(<string>) | media-document(<string>) | regexp(<string>) ]# {\n <group-rule-body>\n}", + "interfaces": [ + "CSSGroupingRule", + "CSSConditionRule" + ], + "groups": [ + "CSS Conditional Rules" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@document" + }, + "@font-palette-values": { + "syntax": "@font-palette-values <dashed-ident> { <declaration-list> }", + "groups": [ + "CSS Fonts" + ], + "descriptors": { + "base-palette": { + "syntax": "light | dark | <integer [0,∞]>", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "font-family": { + "syntax": "<family-name>#", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "override-colors": { + "syntax": "[ <integer [0,∞]> <absolute-color-base> ]#", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + } + }, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@font-palette-values" + }, + "@font-face": { + "syntax": "@font-face {\n [ font-family: <family-name>; ] ||\n [ src: <src>; ] ||\n [ unicode-range: <unicode-range>; ] ||\n [ font-variant: <font-variant>; ] ||\n [ font-feature-settings: <font-feature-settings>; ] ||\n [ font-variation-settings: <font-variation-settings>; ] ||\n [ font-stretch: <font-stretch>; ] ||\n [ font-weight: <font-weight>; ] ||\n [ font-style: <font-style>; ] ||\n [ size-adjust: <size-adjust>; ] ||\n [ ascent-override: <ascent-override>; ] ||\n [ descent-override: <descent-override>; ] ||\n [ line-gap-override: <line-gap-override>; ]\n}", + "interfaces": [ + "CSSFontFaceRule" + ], + "groups": [ + "CSS Fonts" + ], + "descriptors": { + "ascent-override": { + "syntax": "normal | <percentage>", + "media": "all", + "initial": "normal", + "percentages": "asSpecified", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "experimental" + }, + "descent-override": { + "syntax": "normal | <percentage>", + "media": "all", + "initial": "normal", + "percentages": "asSpecified", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "experimental" + }, + "font-display": { + "syntax": "[ auto | block | swap | fallback | optional ]", + "media": "visual", + "percentages": "no", + "initial": "auto", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental" + }, + "font-family": { + "syntax": "<family-name>", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "font-feature-settings": { + "syntax": "normal | <feature-tag-value>#", + "media": "all", + "initial": "normal", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "font-variation-settings": { + "syntax": "normal | [ <string> <number> ]#", + "media": "all", + "initial": "normal", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "font-stretch": { + "syntax": "<font-stretch-absolute>{1,2}", + "media": "all", + "initial": "normal", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "font-style": { + "syntax": "normal | italic | oblique <angle>{0,2}", + "media": "all", + "initial": "normal", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "font-weight": { + "syntax": "<font-weight-absolute>{1,2}", + "media": "all", + "initial": "normal", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "line-gap-override": { + "syntax": "normal | <percentage>", + "media": "all", + "initial": "normal", + "percentages": "asSpecified", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "experimental" + }, + "size-adjust": { + "syntax": "<percentage>", + "media": "all", + "initial": "100%", + "percentages": "asSpecified", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "experimental" + }, + "src": { + "syntax": "[ <url> [ format( <string># ) ]? | local( <family-name> ) ]#", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "unicode-range": { + "syntax": "<unicode-range>#", + "media": "all", + "initial": "U+0-10FFFF", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + } + }, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@font-face" + }, + "@font-feature-values": { + "syntax": "@font-feature-values <family-name># {\n <feature-value-block-list>\n}", + "interfaces": [ + "CSSFontFeatureValuesRule" + ], + "groups": [ + "CSS Fonts" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@font-feature-values" + }, + "@import": { + "syntax": "@import [ <string> | <url> ]\n [ layer | layer(<layer-name>) ]?\n [ supports( [ <supports-condition> | <declaration> ] ) ]?\n <media-query-list>? ;", + "groups": [ + "CSS Conditional Rules", + "Media Queries" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@import" + }, + "@keyframes": { + "syntax": "@keyframes <keyframes-name> {\n <keyframe-block-list>\n}", + "interfaces": [ + "CSSKeyframeRule", + "CSSKeyframesRule" + ], + "groups": [ + "CSS Animations" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@keyframes" + }, + "@layer": { + "syntax": "@layer [ <layer-name># | <layer-name>? {\n <stylesheet>\n} ]", + "interfaces": [ + "CSSLayerBlockRule", + "CSSLayerStatementRule" + ], + "groups": [ + "CSS Cascading and Inheritance" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@layer" + }, + "@media": { + "syntax": "@media <media-query-list> {\n <group-rule-body>\n}", + "interfaces": [ + "CSSGroupingRule", + "CSSConditionRule", + "CSSMediaRule", + "CSSCustomMediaRule" + ], + "groups": [ + "CSS Conditional Rules", + "Media Queries" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@media" + }, + "@namespace": { + "syntax": "@namespace <namespace-prefix>? [ <string> | <url> ];", + "groups": [ + "CSS Namespaces" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@namespace" + }, + "@page": { + "syntax": "@page <page-selector-list> {\n <page-body>\n}", + "interfaces": [ + "CSSPageRule" + ], + "groups": [ + "CSS Pages" + ], + "descriptors": { + "bleed": { + "syntax": "auto | <length>", + "media": [ + "visual", + "paged" + ], + "initial": "auto", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard" + }, + "marks": { + "syntax": "none | [ crop || cross ]", + "media": [ + "visual", + "paged" + ], + "initial": "none", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "page-orientation": { + "syntax": "upright | rotate-left | rotate-right ", + "media": [ + "visual", + "paged" + ], + "initial": "upright", + "percentages": "no", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard" + }, + "size": { + "syntax": "<length>{1,2} | auto | [ <page-size> || [ portrait | landscape ] ]", + "media": [ + "visual", + "paged" + ], + "initial": "auto", + "percentages": "no", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "orderOfAppearance", + "status": "standard" + } + }, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@page" + }, + "@position-try": { + "syntax": "@position-try <dashed-ident> {\n <declaration-list>\n}", + "interfaces": [ + "CSSPositionTryRule" + ], + "groups": [ + "CSS Positioning" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@position-try" + }, + "@property": { + "syntax": "@property <custom-property-name> {\n <declaration-list>\n}", + "interfaces": [ + "CSS", + "CSSPropertyRule" + ], + "groups": [ + "CSS Houdini" + ], + "descriptors": { + "syntax": { + "syntax": "<string>", + "media": "all", + "percentages": "no", + "initial": "n/a (required)", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental" + }, + "inherits": { + "syntax": "true | false", + "media": "all", + "percentages": "no", + "initial": "auto", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental" + }, + "initial-value": { + "syntax": "<declaration-value>?", + "media": "all", + "initial": "n/a (required)", + "percentages": "no", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental" + } + }, + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@property" + }, + "@scope": { + "syntax": "@scope [(<scope-start>)]? [to (<scope-end>)]? {\n <rule-list>\n}", + "groups": [ + "CSS Conditional Rules" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@scope" + }, + "@starting-style": { + "syntax": "@starting-style {\n <declaration-list> | <group-rule-body>\n}", + "interfaces": [ + "CSSStartingStyleRule" + ], + "groups": [ + "CSS Animations" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@starting-style" + }, + "@supports": { + "syntax": "@supports <supports-condition> {\n <group-rule-body>\n}", + "interfaces": [ + "CSSGroupingRule", + "CSSConditionRule", + "CSSSupportsRule" + ], + "groups": [ + "CSS Conditional Rules" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/@supports" + } +} diff --git a/vanilla/node_modules/mdn-data/css/at-rules.schema.json b/vanilla/node_modules/mdn-data/css/at-rules.schema.json new file mode 100644 index 0000000..9c89255 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/at-rules.schema.json @@ -0,0 +1,131 @@ +{ + "definitions": { + "stringOrPropertyList": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "type": "string", + "property-reference": { + "comment": "property-reference is an extension to the JSON schema validator. Here it jumps 3 levels up in the hierarchy and tests if a value is an existing key in descriptors. See test/validate-schema.js for implementation details.", + "$data": "3" + } + } + } + ] + } + }, + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "properties": { + "syntax": { + "type": "string" + }, + "interfaces": { + "type": "array", + "items": { + "type": "string" + } + }, + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "descriptors": { + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "properties": { + "syntax": { + "type": "string" + }, + "media": { + "oneOf": [ + { + "type": "string", + "enum": [ + "all", + "continuous", + "paged", + "visual" + ] + }, + { + "type": "array", + "minItems": 2, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "continuous", + "paged", + "visual" + ] + } + } + ] + }, + "initial": { + "$ref": "#/definitions/stringOrPropertyList" + }, + "percentages": { + "$ref": "#/definitions/stringOrPropertyList" + }, + "computed": { + "$ref": "#/definitions/stringOrPropertyList" + }, + "order": { + "enum": [ + "orderOfAppearance", + "uniqueOrder" + ] + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental" + ] + } + }, + "required": [ + "syntax", + "initial", + "percentages", + "computed", + "order", + "status" + ] + } + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/Web/CSS/" + } + }, + "required": [ + "syntax", + "groups", + "status" + ] + } +} diff --git a/vanilla/node_modules/mdn-data/css/definitions.json b/vanilla/node_modules/mdn-data/css/definitions.json new file mode 100644 index 0000000..df4d95f --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/definitions.json @@ -0,0 +1,80 @@ +{ + "groupList": { + "enum": [ + "Basic Selectors", + "Combinators", + "Compositing and Blending", + "CSS Angles", + "CSS Animations", + "CSS Backgrounds and Borders", + "CSS Basic User Interface", + "CSS Box Model", + "CSS Box Alignment", + "CSS Break", + "CSS Cascading and Inheritance", + "CSS Charsets", + "CSS Color", + "CSS Columns", + "CSS Conditional Rules", + "CSS Containment", + "CSS Counter Styles", + "CSS Device Adaptation", + "CSS Display", + "CSS Flexible Box Layout", + "CSS Flexible Lengths", + "CSS Fonts", + "CSS Fragmentation", + "CSS Frequencies", + "CSS Generated Content", + "CSS Grid Layout", + "CSS Houdini", + "CSS Images", + "CSS Inline", + "CSS Lengths", + "CSS Lists and Counters", + "CSS Logical Properties", + "CSS Masking", + "CSS Miscellaneous", + "CSS Motion Path", + "CSS Namespaces", + "CSS Overflow", + "CSS Pages", + "CSS Positioning", + "CSS Regions", + "CSS Resolutions", + "CSS Ruby", + "CSS Scroll Anchoring", + "CSS Scrollbars", + "CSS Scroll Snap", + "CSS Shadow Parts", + "CSS Shapes", + "CSS Speech", + "CSS Table", + "CSS Text", + "CSS Text Decoration", + "CSS Times", + "CSS Transforms", + "CSS Transitions", + "CSS Types", + "CSS Units", + "CSS Variables", + "CSS View Transitions", + "CSS Will Change", + "CSS Writing Modes", + "CSSOM View", + "Filter Effects", + "Grouping Selectors", + "MathML", + "Media Queries", + "Microsoft Extensions", + "Mozilla Extensions", + "Pointer Events", + "Pseudo", + "Pseudo-classes", + "Pseudo-elements", + "Selectors", + "Scalable Vector Graphics", + "WebKit Extensions" + ] + } +} diff --git a/vanilla/node_modules/mdn-data/css/functions.json b/vanilla/node_modules/mdn-data/css/functions.json new file mode 100644 index 0000000..09c9ce3 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/functions.json @@ -0,0 +1,593 @@ +{ + "anchor()": { + "syntax": "anchor( <anchor-name>? && <anchor-side>, <length-percentage>? )", + "groups": [ + "CSS Positioning" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor" + }, + "anchor-size()": { + "syntax": "anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )", + "groups": [ + "CSS Positioning" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor-size" + }, + "attr()": { + "syntax": "attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )", + "groups": [ + "CSS Generated Content" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/attr" + }, + "blur()": { + "syntax": "blur( <length> )", + "groups": [ + "Filter Effects" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/blur" + }, + "brightness()": { + "syntax": "brightness( <number-percentage> )", + "groups": [ + "Filter Effects" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/brightness" + }, + "calc()": { + "syntax": "calc( <calc-sum> )", + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/calc" + }, + "circle()": { + "syntax": "circle( [ <shape-radius> ]? [ at <position> ]? )", + "groups": [ + "CSS Shapes" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/circle" + }, + "clamp()": { + "syntax": "clamp( <calc-sum>#{3} )", + "groups": [ + "CSS Fonts" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clamp" + }, + "conic-gradient()": { + "syntax": "conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )", + "groups": [ + "CSS Backgrounds and Borders", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/conic-gradient" + }, + "contrast()": { + "syntax": "contrast( [ <number-percentage> ] )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/contrast" + }, + "counter()": { + "syntax": "counter( <custom-ident>, <counter-style>? )", + "groups": [ + "CSS Lists and Counters" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter" + }, + "counters()": { + "syntax": "counters( <custom-ident>, <string>, <counter-style>? )", + "groups": [ + "CSS Lists and Counters" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counters" + }, + "cross-fade()": { + "syntax": "cross-fade( <cf-mixing-image> , <cf-final-image>? )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cross-fade" + }, + "drop-shadow()": { + "syntax": "drop-shadow( <length>{2,3} <color>? )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/drop-shadow" + }, + "element()": { + "syntax": "element( <id-selector> )", + "groups": [ + "CSS Miscellaneous" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/element" + }, + "ellipse()": { + "syntax": "ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )", + "groups": [ + "CSS Shapes" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/ellipse" + }, + "env()": { + "syntax": "env( <custom-ident> , <declaration-value>? )", + "groups": [ + "CSS Box Model" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/env" + }, + "fit-content()": { + "syntax": "fit-content( [ <length> | <percentage> ] )", + "groups": [ + "CSS Box Model" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fit-content" + }, + "grayscale()": { + "syntax": "grayscale( <number-percentage> )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/grayscale" + }, + "hsl()": { + "syntax": "hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )", + "groups": [ + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsl" + }, + "hsla()": { + "syntax": "hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )", + "groups": [ + "CSS Color" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/hsla" + }, + "hue-rotate()": { + "syntax": "hue-rotate( <angle> )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/hue-rotate" + }, + "image()": { + "syntax": "image( <image-tags>? [ <image-src>? , <color>? ]! )", + "groups": [ + "CSS Images" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/image" + }, + "image-set()": { + "syntax": "image-set( <image-set-option># )", + "groups": [ + "CSS Images" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/image-set" + }, + "inset()": { + "syntax": "inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )", + "groups": [ + "CSS Shapes" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/inset" + }, + "invert()": { + "syntax": "invert( <number-percentage> )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/invert" + }, + "leader()": { + "syntax": "leader( <leader-type> )", + "groups": [ + "CSS Miscellaneous" + ], + "status": "nonstandard" + }, + "linear-gradient()": { + "syntax": "linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )", + "groups": [ + "CSS Backgrounds and Borders", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/linear-gradient" + }, + "matrix()": { + "syntax": "matrix( <number>#{6} )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/matrix" + }, + "matrix3d()": { + "syntax": "matrix3d( <number>#{16} )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/matrix3d" + }, + "max()": { + "syntax": "max( <calc-sum># )", + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max" + }, + "min()": { + "syntax": "min( <calc-sum># )", + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min" + }, + "minmax()": { + "syntax": "minmax( [ <length> | <percentage> | min-content | max-content | auto ] , [ <length> | <percentage> | <flex> | min-content | max-content | auto ] )", + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/minmax" + }, + "oklab()": { + "syntax": "oklab( [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ / [<alpha-value> | none] ]? )", + "groups": [ + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/oklab" + }, + "oklch()": { + "syntax": "oklch( [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ <hue> | none] [ / [<alpha-value> | none] ]? )", + "groups": [ + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/oklch" + }, + "opacity()": { + "syntax": "opacity( [ <number-percentage> ] )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/opacity" + }, + "path()": { + "syntax": "path( [ <fill-rule>, ]? <string> )", + "groups": [ + "CSS Shapes", + "CSS Motion Path" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/path" + }, + "paint()": { + "syntax": "paint( <ident>, <declaration-value>? )", + "groups": [ + "CSS Backgrounds and Borders" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image/paint" + }, + "perspective()": { + "syntax": "perspective( <length> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/perspective" + }, + "polygon()": { + "syntax": "polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )", + "groups": [ + "CSS Shapes" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape/polygon" + }, + "radial-gradient()": { + "syntax": "radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )", + "groups": [ + "CSS Backgrounds and Borders", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/radial-gradient" + }, + "ray()": { + "syntax": "ray( <angle> && <ray-size>? && contain? && [at <position>]? )", + "groups": [ + "CSS Motion Path" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ray" + }, + "repeating-linear-gradient()": { + "syntax": "repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )", + "groups": [ + "CSS Backgrounds and Borders", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/repeating-linear-gradient" + }, + "repeating-radial-gradient()": { + "syntax": "repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )", + "groups": [ + "CSS Backgrounds and Borders", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient/repeating-linear-gradient" + }, + "rgb()": { + "syntax": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )", + "groups": [ + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgb" + }, + "rgba()": { + "syntax": "rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )", + "groups": [ + "CSS Color" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value/rgba" + }, + "rotate()": { + "syntax": "rotate( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotate" + }, + "rotate3d()": { + "syntax": "rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotate3d" + }, + "rotateX()": { + "syntax": "rotateX( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateX" + }, + "rotateY()": { + "syntax": "rotateY( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateY" + }, + "rotateZ()": { + "syntax": "rotateZ( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/rotateZ" + }, + "saturate()": { + "syntax": "saturate( <number-percentage> )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/saturate" + }, + "scale()": { + "syntax": "scale( <number> , <number>? )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale" + }, + "scale3d()": { + "syntax": "scale3d( <number> , <number> , <number> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scale3d" + }, + "scaleX()": { + "syntax": "scaleX( <number> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleX" + }, + "scaleY()": { + "syntax": "scaleY( <number> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleY" + }, + "scaleZ()": { + "syntax": "scaleZ( <number> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/scaleZ" + }, + "scroll()": { + "syntax": "scroll([<axis> || <scroller>]?)", + "groups": [ + "CSS Animations" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline/scroll" + }, + "skew()": { + "syntax": "skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skew" + }, + "skewX()": { + "syntax": "skewX( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skewX" + }, + "skewY()": { + "syntax": "skewY( [ <angle> | <zero> ] )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/skewY" + }, + "sepia()": { + "syntax": "sepia( <number-percentage> )", + "groups": [ + "Filter Effects", + "CSS Color" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function/sepia" + }, + "target-counter()": { + "syntax": "target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )", + "groups": [ + "CSS Lists and Counters" + ], + "status": "nonstandard" + }, + "target-counters()": { + "syntax": "target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )", + "groups": [ + "CSS Lists and Counters" + ], + "status": "nonstandard" + }, + "target-text()": { + "syntax": "target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )", + "groups": [ + "CSS Miscellaneous" + ], + "status": "nonstandard" + }, + "translate()": { + "syntax": "translate( <length-percentage> , <length-percentage>? )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translate" + }, + "translate3d()": { + "syntax": "translate3d( <length-percentage> , <length-percentage> , <length> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translate3d" + }, + "translateX()": { + "syntax": "translateX( <length-percentage> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateX" + }, + "translateY()": { + "syntax": "translateY( <length-percentage> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateY" + }, + "translateZ()": { + "syntax": "translateZ( <length> )", + "groups": [ + "CSS Transforms" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function/translateZ" + }, + "var()": { + "syntax": "var( <custom-property-name> , <declaration-value>? )", + "groups": [ + "CSS Miscellaneous" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/var" + }, + "view()": { + "syntax": "view([<axis> || <'view-timeline-inset'>]?)", + "groups": [ + "CSS Animations" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline/view" + } +} diff --git a/vanilla/node_modules/mdn-data/css/functions.schema.json b/vanilla/node_modules/mdn-data/css/functions.schema.json new file mode 100644 index 0000000..26fd45c --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/functions.schema.json @@ -0,0 +1,45 @@ +{ + "definitions": { + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental", + "obsolete" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/" + } + }, + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "required": [ + "syntax", + "groups", + "status" + ], + "properties": { + "syntax": { + "type": "string" + }, + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "status": { + "$ref": "#/definitions/status" + }, + "mdn_url": { + "$ref": "#/definitions/mdn_url" + } + } + } +} diff --git a/vanilla/node_modules/mdn-data/css/index.js b/vanilla/node_modules/mdn-data/css/index.js new file mode 100644 index 0000000..fcc2ebd --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/index.js @@ -0,0 +1,9 @@ +module.exports = { + atRules: require('./at-rules'), + functions: require('./functions'), + selectors: require('./selectors'), + types: require('./types'), + properties: require('./properties'), + syntaxes: require('./syntaxes'), + units: require('./units'), +} diff --git a/vanilla/node_modules/mdn-data/css/properties.json b/vanilla/node_modules/mdn-data/css/properties.json new file mode 100644 index 0000000..7e0e0ff --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/properties.json @@ -0,0 +1,10806 @@ +{ + "--*": { + "syntax": "<declaration-value>", + "media": "all", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Variables" + ], + "initial": "seeProse", + "appliesto": "allElements", + "computed": "asSpecifiedWithVarsSubstituted", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/--*" + }, + "-ms-accelerator": { + "syntax": "false | true", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "false", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator" + }, + "-ms-block-progression": { + "syntax": "tb | rl | bt | lr", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "tb", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression" + }, + "-ms-content-zoom-chaining": { + "syntax": "none | chained", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining" + }, + "-ms-content-zooming": { + "syntax": "none | zoom", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "zoomForTheTopLevelNoneForTheRest", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming" + }, + "-ms-content-zoom-limit": { + "syntax": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": [ + "-ms-content-zoom-limit-max", + "-ms-content-zoom-limit-min" + ], + "groups": [ + "Microsoft Extensions" + ], + "initial": [ + "-ms-content-zoom-limit-max", + "-ms-content-zoom-limit-min" + ], + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "-ms-content-zoom-limit-max", + "-ms-content-zoom-limit-min" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit" + }, + "-ms-content-zoom-limit-max": { + "syntax": "<percentage>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "maxZoomFactor", + "groups": [ + "Microsoft Extensions" + ], + "initial": "400%", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max" + }, + "-ms-content-zoom-limit-min": { + "syntax": "<percentage>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "minZoomFactor", + "groups": [ + "Microsoft Extensions" + ], + "initial": "100%", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min" + }, + "-ms-content-zoom-snap": { + "syntax": "<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": [ + "-ms-content-zoom-snap-type", + "-ms-content-zoom-snap-points" + ], + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "-ms-content-zoom-snap-type", + "-ms-content-zoom-snap-points" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap" + }, + "-ms-content-zoom-snap-points": { + "syntax": "snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "snapInterval(0%, 100%)", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points" + }, + "-ms-content-zoom-snap-type": { + "syntax": "none | proximity | mandatory", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type" + }, + "-ms-filter": { + "syntax": "<string>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "\"\"", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-filter" + }, + "-ms-flow-from": { + "syntax": "[ none | <custom-ident> ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "nonReplacedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from" + }, + "-ms-flow-into": { + "syntax": "[ none | <custom-ident> ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "iframeElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into" + }, + "-ms-grid-columns": { + "syntax": "none | <track-list> | <auto-track-list>", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpcDifferenceLpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "none", + "appliesto": "gridContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-grid-columns" + }, + "-ms-grid-rows": { + "syntax": "none | <track-list> | <auto-track-list>", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpcDifferenceLpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "none", + "appliesto": "gridContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-grid-rows" + }, + "-ms-high-contrast-adjust": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust" + }, + "-ms-hyphenate-limit-chars": { + "syntax": "auto | <integer>{1,3}", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars" + }, + "-ms-hyphenate-limit-lines": { + "syntax": "no-limit | <integer>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "no-limit", + "appliesto": "blockContainerElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines" + }, + "-ms-hyphenate-limit-zone": { + "syntax": "<percentage> | <length>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "referToLineBoxWidth", + "groups": [ + "Microsoft Extensions" + ], + "initial": "0", + "appliesto": "blockContainerElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone" + }, + "-ms-ime-align": { + "syntax": "auto | after", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align" + }, + "-ms-overflow-style": { + "syntax": "auto | none | scrollbar | -ms-autohiding-scrollbar", + "media": "interactive", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style" + }, + "-ms-scrollbar-3dlight-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "dependsOnUserAgent", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color" + }, + "-ms-scrollbar-arrow-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "ButtonText", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color" + }, + "-ms-scrollbar-base-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "dependsOnUserAgent", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color" + }, + "-ms-scrollbar-darkshadow-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "ThreeDDarkShadow", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color" + }, + "-ms-scrollbar-face-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "ThreeDFace", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color" + }, + "-ms-scrollbar-highlight-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "ThreeDHighlight", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color" + }, + "-ms-scrollbar-shadow-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "ThreeDDarkShadow", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color" + }, + "-ms-scrollbar-track-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "Scrollbar", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color" + }, + "-ms-scroll-chaining": { + "syntax": "chained | none", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "chained", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining" + }, + "-ms-scroll-limit": { + "syntax": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": [ + "-ms-scroll-limit-x-min", + "-ms-scroll-limit-y-min", + "-ms-scroll-limit-x-max", + "-ms-scroll-limit-y-max" + ], + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "-ms-scroll-limit-x-min", + "-ms-scroll-limit-y-min", + "-ms-scroll-limit-x-max", + "-ms-scroll-limit-y-max" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit" + }, + "-ms-scroll-limit-x-max": { + "syntax": "auto | <length>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max" + }, + "-ms-scroll-limit-x-min": { + "syntax": "<length>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "0", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min" + }, + "-ms-scroll-limit-y-max": { + "syntax": "auto | <length>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max" + }, + "-ms-scroll-limit-y-min": { + "syntax": "<length>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "0", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min" + }, + "-ms-scroll-rails": { + "syntax": "none | railed", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "railed", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails" + }, + "-ms-scroll-snap-points-x": { + "syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "snapInterval(0px, 100%)", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x" + }, + "-ms-scroll-snap-points-y": { + "syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "snapInterval(0px, 100%)", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y" + }, + "-ms-scroll-snap-type": { + "syntax": "none | proximity | mandatory", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type" + }, + "-ms-scroll-snap-x": { + "syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": [ + "-ms-scroll-snap-type", + "-ms-scroll-snap-points-x" + ], + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "-ms-scroll-snap-type", + "-ms-scroll-snap-points-x" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x" + }, + "-ms-scroll-snap-y": { + "syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": [ + "-ms-scroll-snap-type", + "-ms-scroll-snap-points-y" + ], + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "-ms-scroll-snap-type", + "-ms-scroll-snap-points-y" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y" + }, + "-ms-scroll-translation": { + "syntax": "none | vertical-to-horizontal", + "media": "interactive", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation" + }, + "-ms-text-autospace": { + "syntax": "none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace" + }, + "-ms-touch-select": { + "syntax": "grippers | none", + "media": "interactive", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "grippers", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select" + }, + "-ms-user-select": { + "syntax": "none | element | text", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "text", + "appliesto": "nonReplacedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-user-select" + }, + "-ms-wrap-flow": { + "syntax": "auto | both | start | end | maximum | clear", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "auto", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow" + }, + "-ms-wrap-margin": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "0", + "appliesto": "exclusionElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin" + }, + "-ms-wrap-through": { + "syntax": "wrap | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "wrap", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through" + }, + "-moz-appearance": { + "syntax": "none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "noneButOverriddenInUserAgentCSS", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance" + }, + "-moz-binding": { + "syntax": "<url> | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElementsExceptGeneratedContentOrPseudoElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-binding" + }, + "-moz-border-bottom-colors": { + "syntax": "<color>+ | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-bottom-colors" + }, + "-moz-border-left-colors": { + "syntax": "<color>+ | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-left-colors" + }, + "-moz-border-right-colors": { + "syntax": "<color>+ | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-right-colors" + }, + "-moz-border-top-colors": { + "syntax": "<color>+ | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-top-colors" + }, + "-moz-context-properties": { + "syntax": "none | [ fill | fill-opacity | stroke | stroke-opacity ]#", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElementsThatCanReferenceImages", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties" + }, + "-moz-float-edge": { + "syntax": "border-box | content-box | margin-box | padding-box", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "content-box", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-float-edge" + }, + "-moz-force-broken-image-icon": { + "syntax": "0 | 1", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "0", + "appliesto": "images", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-force-broken-image-icon" + }, + "-moz-image-region": { + "syntax": "<shape> | auto", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "auto", + "appliesto": "xulImageElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-image-region" + }, + "-moz-orient": { + "syntax": "inline | block | horizontal | vertical", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "inline", + "appliesto": "anyElementEffectOnProgressAndMeter", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-orient" + }, + "-moz-outline-radius": { + "syntax": "<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?", + "media": "visual", + "inherited": false, + "animationType": [ + "-moz-outline-radius-topleft", + "-moz-outline-radius-topright", + "-moz-outline-radius-bottomright", + "-moz-outline-radius-bottomleft" + ], + "percentages": [ + "-moz-outline-radius-topleft", + "-moz-outline-radius-topright", + "-moz-outline-radius-bottomright", + "-moz-outline-radius-bottomleft" + ], + "groups": [ + "Mozilla Extensions" + ], + "initial": [ + "-moz-outline-radius-topleft", + "-moz-outline-radius-topright", + "-moz-outline-radius-bottomright", + "-moz-outline-radius-bottomleft" + ], + "appliesto": "allElements", + "computed": [ + "-moz-outline-radius-topleft", + "-moz-outline-radius-topright", + "-moz-outline-radius-bottomright", + "-moz-outline-radius-bottomleft" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius" + }, + "-moz-outline-radius-bottomleft": { + "syntax": "<outline-radius>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "Mozilla Extensions" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft" + }, + "-moz-outline-radius-bottomright": { + "syntax": "<outline-radius>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "Mozilla Extensions" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright" + }, + "-moz-outline-radius-topleft": { + "syntax": "<outline-radius>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "Mozilla Extensions" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft" + }, + "-moz-outline-radius-topright": { + "syntax": "<outline-radius>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "Mozilla Extensions" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright" + }, + "-moz-stack-sizing": { + "syntax": "ignore | stretch-to-fit", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "stretch-to-fit", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-stack-sizing" + }, + "-moz-text-blink": { + "syntax": "none | blink", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-text-blink" + }, + "-moz-user-focus": { + "syntax": "ignore | normal | select-after | select-before | select-menu | select-same | select-all | none", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-focus" + }, + "-moz-user-input": { + "syntax": "auto | none | enabled | disabled", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-input" + }, + "-moz-user-modify": { + "syntax": "read-only | read-write | write-only", + "media": "interactive", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "read-only", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-modify" + }, + "-moz-window-dragging": { + "syntax": "drag | no-drag", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "drag", + "appliesto": "allElementsCreatingNativeWindows", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-window-dragging" + }, + "-moz-window-shadow": { + "syntax": "default | menu | tooltip | sheet | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "default", + "appliesto": "allElementsCreatingNativeWindows", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-window-shadow" + }, + "-webkit-appearance": { + "syntax": "none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "noneButOverriddenInUserAgentCSS", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance" + }, + "-webkit-border-before": { + "syntax": "<'border-width'> || <'border-style'> || <color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": [ + "-webkit-border-before-width" + ], + "groups": [ + "WebKit Extensions" + ], + "initial": [ + "border-width", + "border-style", + "color" + ], + "appliesto": "allElements", + "computed": [ + "border-width", + "border-style", + "color" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before" + }, + "-webkit-border-before-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "nonstandard" + }, + "-webkit-border-before-style": { + "syntax": "<'border-style'>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard" + }, + "-webkit-border-before-width": { + "syntax": "<'border-width'>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "WebKit Extensions" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "nonstandard" + }, + "-webkit-box-reflect": { + "syntax": "[ above | below | right | left ]? <length>? <image>?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect" + }, + "-webkit-line-clamp": { + "syntax": "none | <integer>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "WebKit Extensions", + "CSS Overflow" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp" + }, + "-webkit-mask": { + "syntax": "[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": [ + "-webkit-mask-image", + "-webkit-mask-repeat", + "-webkit-mask-attachment", + "-webkit-mask-position", + "-webkit-mask-origin", + "-webkit-mask-clip" + ], + "appliesto": "allElements", + "computed": [ + "-webkit-mask-image", + "-webkit-mask-repeat", + "-webkit-mask-attachment", + "-webkit-mask-position", + "-webkit-mask-origin", + "-webkit-mask-clip" + ], + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask" + }, + "-webkit-mask-attachment": { + "syntax": "<attachment>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "scroll", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment" + }, + "-webkit-mask-clip": { + "syntax": "[ <box> | border | padding | content | text ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "border", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-clip" + }, + "-webkit-mask-composite": { + "syntax": "<composite-style>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "source-over", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite" + }, + "-webkit-mask-image": { + "syntax": "<mask-reference>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "absoluteURIOrNone", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-image" + }, + "-webkit-mask-origin": { + "syntax": "[ <box> | border | padding | content ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "padding", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-origin" + }, + "-webkit-mask-position": { + "syntax": "<position>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "referToSizeOfElement", + "groups": [ + "WebKit Extensions" + ], + "initial": "0% 0%", + "appliesto": "allElements", + "computed": "absoluteLengthOrPercentage", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-position" + }, + "-webkit-mask-position-x": { + "syntax": "[ <length-percentage> | left | center | right ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "referToSizeOfElement", + "groups": [ + "WebKit Extensions" + ], + "initial": "0%", + "appliesto": "allElements", + "computed": "absoluteLengthOrPercentage", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x" + }, + "-webkit-mask-position-y": { + "syntax": "[ <length-percentage> | top | center | bottom ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "referToSizeOfElement", + "groups": [ + "WebKit Extensions" + ], + "initial": "0%", + "appliesto": "allElements", + "computed": "absoluteLengthOrPercentage", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y" + }, + "-webkit-mask-repeat": { + "syntax": "<repeat-style>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "repeat", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-repeat" + }, + "-webkit-mask-repeat-x": { + "syntax": "repeat | no-repeat | space | round", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "repeat", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x" + }, + "-webkit-mask-repeat-y": { + "syntax": "repeat | no-repeat | space | round", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "repeat", + "appliesto": "allElements", + "computed": "absoluteLengthOrPercentage", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y" + }, + "-webkit-mask-size": { + "syntax": "<bg-size>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "relativeToBackgroundPositioningArea", + "groups": [ + "WebKit Extensions" + ], + "initial": "auto auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-size" + }, + "-webkit-overflow-scrolling": { + "syntax": "auto | touch", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "auto", + "appliesto": "scrollingBoxes", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling" + }, + "-webkit-tap-highlight-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "black", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color" + }, + "-webkit-text-fill-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "color", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color" + }, + "-webkit-text-stroke": { + "syntax": "<length> || <color>", + "media": "visual", + "inherited": true, + "animationType": [ + "-webkit-text-stroke-width", + "-webkit-text-stroke-color" + ], + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": [ + "-webkit-text-stroke-width", + "-webkit-text-stroke-color" + ], + "appliesto": "allElements", + "computed": [ + "-webkit-text-stroke-width", + "-webkit-text-stroke-color" + ], + "order": "canonicalOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke" + }, + "-webkit-text-stroke-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "color", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color" + }, + "-webkit-text-stroke-width": { + "syntax": "<length>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "absoluteLength", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width" + }, + "-webkit-touch-callout": { + "syntax": "default | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "default", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout" + }, + "-webkit-user-modify": { + "syntax": "read-only | read-write | read-write-plaintext-only", + "media": "interactive", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "WebKit Extensions" + ], + "initial": "read-only", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard" + }, + "accent-color": { + "syntax": "auto | <color>", + "media": "interactive", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asAutoOrColor", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/accent-color" + }, + "align-content": { + "syntax": "normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "normal", + "appliesto": "blockContainersMultiColumnContainersFlexContainersGridContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-content" + }, + "align-items": { + "syntax": "normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-items" + }, + "align-self": { + "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "auto", + "appliesto": "flexItemsGridItemsAndAbsolutelyPositionedBoxes", + "computed": "autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-self" + }, + "align-tracks": { + "syntax": "[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "normal", + "appliesto": "gridContainersWithMasonryLayoutInTheirBlockAxis", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-tracks" + }, + "all": { + "syntax": "initial | inherit | unset | revert | revert-layer", + "media": "noPracticalMedia", + "inherited": false, + "animationType": "eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection", + "percentages": "no", + "groups": [ + "CSS Miscellaneous" + ], + "initial": "noPracticalInitialValue", + "appliesto": "allElements", + "computed": "asSpecifiedAppliesToEachProperty", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/all" + }, + "anchor-name": { + "syntax": "none | <dashed-ident>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "allElementsThatGenerateAPrincipalBox", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor-name" + }, + "anchor-scope": { + "syntax": "none | all | <dashed-ident>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/anchor-scope" + }, + "animation": { + "syntax": "<single-animation>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": [ + "animation-name", + "animation-duration", + "animation-timing-function", + "animation-delay", + "animation-iteration-count", + "animation-direction", + "animation-fill-mode", + "animation-play-state", + "animation-timeline" + ], + "appliesto": "allElements", + "computed": [ + "animation-name", + "animation-duration", + "animation-timing-function", + "animation-delay", + "animation-direction", + "animation-iteration-count", + "animation-fill-mode", + "animation-play-state", + "animation-timeline" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation" + }, + "animation-composition": { + "syntax": "<single-animation-composition>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "replace", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-composition" + }, + "animation-delay": { + "syntax": "<time>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "0s", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-delay" + }, + "animation-direction": { + "syntax": "<single-animation-direction>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "normal", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-direction" + }, + "animation-duration": { + "syntax": "<time>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "0s", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-duration" + }, + "animation-fill-mode": { + "syntax": "<single-animation-fill-mode>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "none", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode" + }, + "animation-iteration-count": { + "syntax": "<single-animation-iteration-count>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "1", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count" + }, + "animation-name": { + "syntax": "[ none | <keyframes-name> ]#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "none", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-name" + }, + "animation-play-state": { + "syntax": "<single-animation-play-state>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "running", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-play-state" + }, + "animation-range": { + "syntax": "[ <'animation-range-start'> <'animation-range-end'>? ]#", + "media": "visual", + "inherited": false, + "animationType": [ + "animation-range-start", + "animation-range-end" + ], + "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline", + "groups": [ + "CSS Animations" + ], + "initial": [ + "animation-range-start", + "animation-range-end" + ], + "appliesto": "allElements", + "computed": [ + "animation-range-start", + "animation-range-end" + ], + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range" + }, + "animation-range-end": { + "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline", + "groups": [ + "CSS Animations" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "listEachItemConsistingOfNormalLengthPercentageOrNameLengthPercentage", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-end" + }, + "animation-range-start": { + "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline", + "groups": [ + "CSS Animations" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "listEachItemConsistingOfNormalLengthPercentageOrNameLengthPercentage", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-start" + }, + "animation-timing-function": { + "syntax": "<easing-function>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "ease", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timing-function" + }, + "animation-timeline": { + "syntax": "<single-animation-timeline>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "listEachItemIdentifierOrNoneAuto", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline" + }, + "appearance": { + "syntax": "none | auto | textfield | menulist-button | <compat-auto>", + "media": "all", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance" + }, + "aspect-ratio": { + "syntax": "auto || <ratio>", + "media": "all", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/aspect-ratio" + }, + "azimuth": { + "syntax": "<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards", + "media": "aural", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Speech" + ], + "initial": "center", + "appliesto": "allElements", + "computed": "normalizedAngle", + "order": "orderOfAppearance", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/azimuth" + }, + "backdrop-filter": { + "syntax": "none | <filter-function-list>", + "media": "visual", + "inherited": false, + "animationType": "filterList", + "percentages": "no", + "groups": [ + "Filter Effects" + ], + "initial": "none", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/backdrop-filter" + }, + "backface-visibility": { + "syntax": "visible | hidden", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "visible", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/backface-visibility" + }, + "background": { + "syntax": "[ <bg-layer> , ]* <final-bg-layer>", + "media": "visual", + "inherited": false, + "animationType": [ + "background-color", + "background-image", + "background-clip", + "background-position", + "background-size", + "background-repeat", + "background-attachment" + ], + "percentages": [ + "background-position", + "background-size" + ], + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "background-image", + "background-position", + "background-size", + "background-repeat", + "background-origin", + "background-clip", + "background-attachment", + "background-color" + ], + "appliesto": "allElements", + "computed": [ + "background-image", + "background-position", + "background-size", + "background-repeat", + "background-origin", + "background-clip", + "background-attachment", + "background-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background" + }, + "background-attachment": { + "syntax": "<attachment>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "scroll", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-attachment" + }, + "background-blend-mode": { + "syntax": "<blend-mode>#", + "media": "none", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "Compositing and Blending" + ], + "initial": "normal", + "appliesto": "allElementsSVGContainerGraphicsAndGraphicsReferencingElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-blend-mode" + }, + "background-clip": { + "syntax": "<box>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "border-box", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-clip" + }, + "background-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "transparent", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-color" + }, + "background-image": { + "syntax": "<bg-image>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecifiedURLsAbsolute", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-image" + }, + "background-origin": { + "syntax": "<box>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "padding-box", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-origin" + }, + "background-position": { + "syntax": "<bg-position>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0% 0%", + "appliesto": "allElements", + "computed": [ + "background-position-x", + "background-position-y" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position" + }, + "background-position-x": { + "syntax": "[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "referToWidthOfBackgroundPositioningAreaMinusBackgroundImageWidth", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0%", + "appliesto": "allElements", + "computed": "listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position-x" + }, + "background-position-y": { + "syntax": "[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0%", + "appliesto": "allElements", + "computed": "listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position-y" + }, + "background-repeat": { + "syntax": "<repeat-style>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "repeat", + "appliesto": "allElements", + "computed": "listEachItemHasTwoKeywordsOnePerDimension", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-repeat" + }, + "background-size": { + "syntax": "<bg-size>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "relativeToBackgroundPositioningArea", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "auto auto", + "appliesto": "allElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-size" + }, + "block-size": { + "syntax": "<'width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "blockSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsWidthAndHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/block-size" + }, + "border": { + "syntax": "<line-width> || <line-style> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-width", + "border-style", + "border-color" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-width", + "border-style", + "border-color" + ], + "appliesto": "allElements", + "computed": [ + "border-width", + "border-style", + "border-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border" + }, + "border-block": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-block-width", + "border-block-style", + "border-block-color" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-block-width", + "border-block-style", + "border-block-color" + ], + "appliesto": "allElements", + "computed": [ + "border-block-width", + "border-block-style", + "border-block-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block" + }, + "border-block-color": { + "syntax": "<'border-top-color'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-color" + }, + "border-block-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-style" + }, + "border-block-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-width" + }, + "border-block-end": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-block-end-color", + "border-block-end-style", + "border-block-end-width" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-top-width", + "border-top-style", + "border-top-color" + ], + "appliesto": "allElements", + "computed": [ + "border-top-width", + "border-top-style", + "border-top-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end" + }, + "border-block-end-color": { + "syntax": "<'border-top-color'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-color" + }, + "border-block-end-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-style" + }, + "border-block-end-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-width" + }, + "border-block-start": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-block-start-color", + "border-block-start-style", + "border-block-start-width" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-width", + "border-style", + "color" + ], + "appliesto": "allElements", + "computed": [ + "border-width", + "border-style", + "border-block-start-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start" + }, + "border-block-start-color": { + "syntax": "<'border-top-color'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-color" + }, + "border-block-start-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-style" + }, + "border-block-start-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-width" + }, + "border-bottom": { + "syntax": "<line-width> || <line-style> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-bottom-color", + "border-bottom-style", + "border-bottom-width" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-bottom-width", + "border-bottom-style", + "border-bottom-color" + ], + "appliesto": "allElements", + "computed": [ + "border-bottom-width", + "border-bottom-style", + "border-bottom-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom" + }, + "border-bottom-color": { + "syntax": "<'border-top-color'>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-color" + }, + "border-bottom-left-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius" + }, + "border-bottom-right-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius" + }, + "border-bottom-style": { + "syntax": "<line-style>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-style" + }, + "border-bottom-width": { + "syntax": "<line-width>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthOr0IfBorderBottomStyleNoneOrHidden", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-width" + }, + "border-collapse": { + "syntax": "collapse | separate", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Table" + ], + "initial": "separate", + "appliesto": "tableElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-collapse" + }, + "border-color": { + "syntax": "<color>{1,4}", + "media": "visual", + "inherited": false, + "animationType": [ + "border-bottom-color", + "border-left-color", + "border-right-color", + "border-top-color" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-top-color", + "border-right-color", + "border-bottom-color", + "border-left-color" + ], + "appliesto": "allElements", + "computed": [ + "border-bottom-color", + "border-left-color", + "border-right-color", + "border-top-color" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-color" + }, + "border-end-end-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius" + }, + "border-end-start-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius" + }, + "border-image": { + "syntax": "<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-image-outset", + "border-image-repeat", + "border-image-slice", + "border-image-source", + "border-image-width" + ], + "percentages": [ + "border-image-slice", + "border-image-width" + ], + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-image-source", + "border-image-slice", + "border-image-width", + "border-image-outset", + "border-image-repeat" + ], + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": [ + "border-image-outset", + "border-image-repeat", + "border-image-slice", + "border-image-source", + "border-image-width" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image" + }, + "border-image-outset": { + "syntax": "[ <length> | <number> ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0", + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-outset" + }, + "border-image-repeat": { + "syntax": "[ stretch | repeat | round | space ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "stretch", + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-repeat" + }, + "border-image-slice": { + "syntax": "<number-percentage>{1,4} && fill?", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSizeOfBorderImage", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "100%", + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": "oneToFourPercentagesOrAbsoluteLengthsPlusFill", + "order": "percentagesOrLengthsFollowedByFill", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-slice" + }, + "border-image-source": { + "syntax": "none | <image>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": "noneOrImageWithAbsoluteURI", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-source" + }, + "border-image-width": { + "syntax": "[ <length-percentage> | <number> | auto ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToWidthOrHeightOfBorderImageArea", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "1", + "appliesto": "allElementsExceptTableElementsWhenCollapse", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-width" + }, + "border-inline": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-inline-color", + "border-inline-style", + "border-inline-width" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-inline-width", + "border-inline-style", + "border-inline-color" + ], + "appliesto": "allElements", + "computed": [ + "border-inline-width", + "border-inline-style", + "border-inline-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline" + }, + "border-inline-end": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-inline-end-color", + "border-inline-end-style", + "border-inline-end-width" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-width", + "border-style", + "color" + ], + "appliesto": "allElements", + "computed": [ + "border-width", + "border-style", + "border-inline-end-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end" + }, + "border-inline-color": { + "syntax": "<'border-top-color'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-color" + }, + "border-inline-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-style" + }, + "border-inline-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-width" + }, + "border-inline-end-color": { + "syntax": "<'border-top-color'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color" + }, + "border-inline-end-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style" + }, + "border-inline-end-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width" + }, + "border-inline-start": { + "syntax": "<'border-top-width'> || <'border-top-style'> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-inline-start-color", + "border-inline-start-style", + "border-inline-start-width" + ], + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "border-width", + "border-style", + "color" + ], + "appliesto": "allElements", + "computed": [ + "border-width", + "border-style", + "border-inline-start-color" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start" + }, + "border-inline-start-color": { + "syntax": "<'border-top-color'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color" + }, + "border-inline-start-style": { + "syntax": "<'border-top-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style" + }, + "border-inline-start-width": { + "syntax": "<'border-top-width'>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width" + }, + "border-left": { + "syntax": "<line-width> || <line-style> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-left-color", + "border-left-style", + "border-left-width" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-left-width", + "border-left-style", + "border-left-color" + ], + "appliesto": "allElements", + "computed": [ + "border-left-width", + "border-left-style", + "border-left-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left" + }, + "border-left-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-color" + }, + "border-left-style": { + "syntax": "<line-style>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-style" + }, + "border-left-width": { + "syntax": "<line-width>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthOr0IfBorderLeftStyleNoneOrHidden", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-width" + }, + "border-radius": { + "syntax": "<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?", + "media": "visual", + "inherited": false, + "animationType": [ + "border-top-left-radius", + "border-top-right-radius", + "border-bottom-right-radius", + "border-bottom-left-radius" + ], + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-top-left-radius", + "border-top-right-radius", + "border-bottom-right-radius", + "border-bottom-left-radius" + ], + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": [ + "border-bottom-left-radius", + "border-bottom-right-radius", + "border-top-left-radius", + "border-top-right-radius" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-radius" + }, + "border-right": { + "syntax": "<line-width> || <line-style> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-right-color", + "border-right-style", + "border-right-width" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-right-width", + "border-right-style", + "border-right-color" + ], + "appliesto": "allElements", + "computed": [ + "border-right-width", + "border-right-style", + "border-right-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right" + }, + "border-right-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-color" + }, + "border-right-style": { + "syntax": "<line-style>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-style" + }, + "border-right-width": { + "syntax": "<line-width>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthOr0IfBorderRightStyleNoneOrHidden", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-width" + }, + "border-spacing": { + "syntax": "<length> <length>?", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Table" + ], + "initial": "0", + "appliesto": "tableElements", + "computed": "twoAbsoluteLengths", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-spacing" + }, + "border-start-end-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius" + }, + "border-start-start-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius" + }, + "border-style": { + "syntax": "<line-style>{1,4}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-top-style", + "border-right-style", + "border-bottom-style", + "border-left-style" + ], + "appliesto": "allElements", + "computed": [ + "border-bottom-style", + "border-left-style", + "border-right-style", + "border-top-style" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-style" + }, + "border-top": { + "syntax": "<line-width> || <line-style> || <color>", + "media": "visual", + "inherited": false, + "animationType": [ + "border-top-color", + "border-top-style", + "border-top-width" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-top-width", + "border-top-style", + "border-top-color" + ], + "appliesto": "allElements", + "computed": [ + "border-top-width", + "border-top-style", + "border-top-color" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top" + }, + "border-top-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-color" + }, + "border-top-left-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius" + }, + "border-top-right-radius": { + "syntax": "<length-percentage>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfBorderBox", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "0", + "appliesto": "allElementsUAsNotRequiredWhenCollapse", + "computed": "twoAbsoluteLengthOrPercentages", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius" + }, + "border-top-style": { + "syntax": "<line-style>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-style" + }, + "border-top-width": { + "syntax": "<line-width>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLengthOr0IfBorderTopStyleNoneOrHidden", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-width" + }, + "border-width": { + "syntax": "<line-width>{1,4}", + "media": "visual", + "inherited": false, + "animationType": [ + "border-bottom-width", + "border-left-width", + "border-right-width", + "border-top-width" + ], + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": [ + "border-top-width", + "border-right-width", + "border-bottom-width", + "border-left-width" + ], + "appliesto": "allElements", + "computed": [ + "border-bottom-width", + "border-left-width", + "border-right-width", + "border-top-width" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-width" + }, + "bottom": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToContainingBlockHeight", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/bottom" + }, + "box-align": { + "syntax": "start | center | end | baseline | stretch", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "stretch", + "appliesto": "elementsWithDisplayBoxOrInlineBox", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-align" + }, + "box-decoration-break": { + "syntax": "slice | clone", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "slice", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-decoration-break" + }, + "box-direction": { + "syntax": "normal | reverse | inherit", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "normal", + "appliesto": "elementsWithDisplayBoxOrInlineBox", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-direction" + }, + "box-flex": { + "syntax": "<number>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "0", + "appliesto": "directChildrenOfElementsWithDisplayMozBoxMozInlineBox", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex" + }, + "box-flex-group": { + "syntax": "<integer>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "1", + "appliesto": "inFlowChildrenOfBoxElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex-group" + }, + "box-lines": { + "syntax": "single | multiple", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "single", + "appliesto": "boxElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-lines" + }, + "box-ordinal-group": { + "syntax": "<integer>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "1", + "appliesto": "childrenOfBoxElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group" + }, + "box-orient": { + "syntax": "horizontal | vertical | inline-axis | block-axis | inherit", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "inlineAxisHorizontalInXUL", + "appliesto": "elementsWithDisplayBoxOrInlineBox", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-orient" + }, + "box-pack": { + "syntax": "start | center | end | justify", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions", + "WebKit Extensions" + ], + "initial": "start", + "appliesto": "elementsWithDisplayMozBoxMozInlineBox", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-pack" + }, + "box-shadow": { + "syntax": "none | <shadow>#", + "media": "visual", + "inherited": false, + "animationType": "shadowList", + "percentages": "no", + "groups": [ + "CSS Backgrounds and Borders" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "absoluteLengthsSpecifiedColorAsSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-shadow" + }, + "box-sizing": { + "syntax": "content-box | border-box", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "content-box", + "appliesto": "allElementsAcceptingWidthOrHeight", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-sizing" + }, + "break-after": { + "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "auto", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-after" + }, + "break-before": { + "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "auto", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-before" + }, + "break-inside": { + "syntax": "auto | avoid | avoid-page | avoid-column | avoid-region", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "auto", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-inside" + }, + "caption-side": { + "syntax": "top | bottom | block-start | block-end | inline-start | inline-end", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Table" + ], + "initial": "top", + "appliesto": "tableCaptionElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caption-side" + }, + "caret": { + "syntax": "<'caret-color'> || <'caret-shape'>", + "media": "interactive", + "inherited": true, + "animationType": [ + "caret-color", + "caret-shape" + ], + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": [ + "caret-color", + "caret-shape" + ], + "appliesto": "elementsThatAcceptInput", + "computed": [ + "caret-color", + "caret-shape" + ], + "order": "perGrammar", + "status": "standard" + }, + "caret-color": { + "syntax": "auto | <color>", + "media": "interactive", + "inherited": true, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asAutoOrColor", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caret-color" + }, + "caret-shape": { + "syntax": "auto | bar | block | underscore", + "media": "interactive", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "elementsThatAcceptInput", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard" + }, + "clear": { + "syntax": "none | left | right | both | inline-start | inline-end", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "blockLevelElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clear" + }, + "clip": { + "syntax": "<shape> | auto", + "media": "visual", + "inherited": false, + "animationType": "rectangle", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "auto", + "appliesto": "absolutelyPositionedElements", + "computed": "autoOrRectangle", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip" + }, + "clip-path": { + "syntax": "<clip-source> | [ <basic-shape> || <geometry-box> ] | none", + "media": "visual", + "inherited": false, + "animationType": "basicShapeOtherwiseNo", + "percentages": "referToReferenceBoxWhenSpecifiedOtherwiseBorderBox", + "groups": [ + "CSS Masking" + ], + "initial": "none", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedURLsAbsolute", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip-path" + }, + "clip-rule": { + "syntax": "nonzero | evenodd", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "nonzero", + "appliesto": "limitedSVGElementsGraphics", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip-rule" + }, + "color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Color" + ], + "initial": "canvastext", + "appliesto": "allElementsAndText", + "computed": "computedColor", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color" + }, + "color-interpolation-filters": { + "syntax": "auto | sRGB | linearRGB", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "linearRGB", + "appliesto": "limitedSVGElementsFilterPrimitives", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip-rule" + }, + "color-scheme": { + "syntax": "normal | [ light | dark | <custom-ident> ]+ && only?", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Color" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color-scheme" + }, + "column-count": { + "syntax": "<integer> | auto", + "media": "visual", + "inherited": false, + "animationType": "integer", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "auto", + "appliesto": "blockContainersExceptTableWrappers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-count" + }, + "column-fill": { + "syntax": "auto | balance", + "media": "visualInContinuousMediaNoEffectInOverflowColumns", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "balance", + "appliesto": "multicolElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-fill" + }, + "column-gap": { + "syntax": "normal | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Box Alignment" + ], + "initial": "normal", + "appliesto": "multiColumnElementsFlexContainersGridContainers", + "computed": "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-gap" + }, + "column-rule": { + "syntax": "<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>", + "media": "visual", + "inherited": false, + "animationType": [ + "column-rule-color", + "column-rule-style", + "column-rule-width" + ], + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": [ + "column-rule-width", + "column-rule-style", + "column-rule-color" + ], + "appliesto": "multicolElements", + "computed": [ + "column-rule-color", + "column-rule-style", + "column-rule-width" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule" + }, + "column-rule-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "currentcolor", + "appliesto": "multicolElements", + "computed": "computedColor", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-color" + }, + "column-rule-style": { + "syntax": "<'border-style'>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "none", + "appliesto": "multicolElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-style" + }, + "column-rule-width": { + "syntax": "<'border-width'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "medium", + "appliesto": "multicolElements", + "computed": "absoluteLength0IfColumnRuleStyleNoneOrHidden", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-width" + }, + "column-span": { + "syntax": "none | all", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "none", + "appliesto": "inFlowBlockLevelElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-span" + }, + "column-width": { + "syntax": "<length> | auto", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": "auto", + "appliesto": "blockContainersExceptTableWrappers", + "computed": "absoluteLengthZeroOrLarger", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-width" + }, + "columns": { + "syntax": "<'column-width'> || <'column-count'>", + "media": "visual", + "inherited": false, + "animationType": [ + "column-width", + "column-count" + ], + "percentages": "no", + "groups": [ + "CSS Columns" + ], + "initial": [ + "column-width", + "column-count" + ], + "appliesto": "blockContainersExceptTableWrappers", + "computed": [ + "column-width", + "column-count" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/columns" + }, + "contain": { + "syntax": "none | strict | content | [ [ size || inline-size ] || layout || style || paint ]", + "media": "all", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain" + }, + "contain-intrinsic-size": { + "syntax": "[ auto? [ none | <length> ] ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": [ + "contain-intrinsic-width", + "contain-intrinsic-height" + ], + "percentages": [ + "contain-intrinsic-width", + "contain-intrinsic-height" + ], + "groups": [ + "CSS Containment" + ], + "initial": [ + "contain-intrinsic-width", + "contain-intrinsic-height" + ], + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": [ + "contain-intrinsic-width", + "contain-intrinsic-height" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size" + }, + "contain-intrinsic-block-size": { + "syntax": "auto? [ none | <length> ]", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": "asSpecifiedWithLengthValuesComputed", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size" + }, + "contain-intrinsic-height": { + "syntax": "auto? [ none | <length> ]", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": "asSpecifiedWithLengthValuesComputed", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height" + }, + "contain-intrinsic-inline-size": { + "syntax": "auto? [ none | <length> ]", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": "asSpecifiedWithLengthValuesComputed", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size" + }, + "contain-intrinsic-width": { + "syntax": "auto? [ none | <length> ]", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": "asSpecifiedWithLengthValuesComputed", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width" + }, + "container": { + "syntax": "<'container-name'> [ / <'container-type'> ]?", + "media": "visual", + "inherited": false, + "animationType": [ + "container-name", + "container-type" + ], + "percentages": [ + "container-name", + "container-type" + ], + "groups": [ + "CSS Containment" + ], + "initial": [ + "container-name", + "container-type" + ], + "appliesto": "allElements", + "computed": [ + "container-name", + "container-type" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/container" + }, + "container-name": { + "syntax": "none | <custom-ident>+", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "noneOrOrderedListOfIdentifiers", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/container-name" + }, + "container-type": { + "syntax": "normal | size | inline-size", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/container-type" + }, + "content": { + "syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?", + "media": "all", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Generated Content" + ], + "initial": "normal", + "appliesto": "allElementsTreeAbidingPseudoElementsPageMarginBoxes", + "computed": "normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/content" + }, + "content-visibility": { + "syntax": "visible | auto | hidden", + "media": "all", + "inherited": false, + "animationType": "discreteButVisibleForDurationWhenAnimatedHidden", + "percentages": "no", + "groups": [ + "CSS Containment" + ], + "initial": "visible", + "appliesto": "elementsForWhichSizeContainmentCanApply", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/content-visibility" + }, + "counter-increment": { + "syntax": "[ <counter-name> <integer>? ]+ | none", + "media": "all", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Counter Styles" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-increment" + }, + "counter-reset": { + "syntax": "[ <counter-name> <integer>? | <reversed-counter-name> <integer>? ]+ | none", + "media": "all", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Counter Styles" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-reset" + }, + "counter-set": { + "syntax": "[ <counter-name> <integer>? ]+ | none", + "media": "all", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Counter Styles" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-set" + }, + "cursor": { + "syntax": "[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]", + "media": [ + "visual", + "interactive" + ], + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecifiedURLsAbsolute", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cursor" + }, + "d": { + "syntax": "none | path(<string>)", + "media": "visual", + "inherited": false, + "animationType": "basicShapeOtherwiseNo", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsPath", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/d" + }, + "cx": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportWidth", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsEllipse", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cx" + }, + "cy": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportHeight", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsEllipse", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cy" + }, + "direction": { + "syntax": "ltr | rtl", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Writing Modes" + ], + "initial": "ltr", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/direction" + }, + "display": { + "syntax": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>", + "media": "all", + "inherited": false, + "animationType": "discreteButVisibleForDurationWhenAnimatedNone", + "percentages": "no", + "groups": [ + "CSS Display" + ], + "initial": "inline", + "appliesto": "allElements", + "computed": "asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display" + }, + "dominant-baseline": { + "syntax": "auto | text-bottom | alphabetic | ideographic | middle | central | mathematical | hanging | text-top", + "media": "all", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "auto", + "appliesto": "blockContainersFlexContainersGridContainersInlineBoxesTableRowsSVGTextContentElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/dominant-baseline" + }, + "empty-cells": { + "syntax": "show | hide", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Table" + ], + "initial": "show", + "appliesto": "tableCellElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/empty-cells" + }, + "field-sizing": { + "syntax": "content | fixed", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "fixed", + "appliesto": "elementsWithDefaultPreferredSize", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/field-sizing" + }, + "fill": { + "syntax": "none | <color> | <url> [none | <color>]? | context-fill | context-stroke", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "black", + "appliesto": "limitedSVGElementsShapeText", + "computed": "asColorOrAbsoluteURL", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fill" + }, + "fill-opacity": { + "syntax": "<alpha-value>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "mapToRange0To1", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "1", + "appliesto": "limitedSVGElementsShapeText", + "computed": "specifiedValueNumberClipped0To1", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fill-opacity" + }, + "fill-rule": { + "syntax": "nonzero | evenodd", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "nonzero", + "appliesto": "limitedSVGElementsShapeText", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/fill-rule" + }, + "filter": { + "syntax": "none | <filter-function-list>", + "media": "visual", + "inherited": false, + "animationType": "filterList", + "percentages": "no", + "groups": [ + "Filter Effects" + ], + "initial": "none", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter" + }, + "flex": { + "syntax": "none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]", + "media": "visual", + "inherited": false, + "animationType": [ + "flex-grow", + "flex-shrink", + "flex-basis" + ], + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": [ + "flex-grow", + "flex-shrink", + "flex-basis" + ], + "appliesto": "flexItemsAndInFlowPseudos", + "computed": [ + "flex-grow", + "flex-shrink", + "flex-basis" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex" + }, + "flex-basis": { + "syntax": "content | <'width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToFlexContainersInnerMainSize", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "auto", + "appliesto": "flexItemsAndInFlowPseudos", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "lengthOrPercentageBeforeKeywordIfBothPresent", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-basis" + }, + "flex-direction": { + "syntax": "row | row-reverse | column | column-reverse", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "row", + "appliesto": "flexContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-direction" + }, + "flex-flow": { + "syntax": "<'flex-direction'> || <'flex-wrap'>", + "media": "visual", + "inherited": false, + "animationType": [ + "flex-direction", + "flex-wrap" + ], + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": [ + "flex-direction", + "flex-wrap" + ], + "appliesto": "flexContainers", + "computed": [ + "flex-direction", + "flex-wrap" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-flow" + }, + "flex-grow": { + "syntax": "<number>", + "media": "visual", + "inherited": false, + "animationType": "number", + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "0", + "appliesto": "flexItemsAndInFlowPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-grow" + }, + "flex-shrink": { + "syntax": "<number>", + "media": "visual", + "inherited": false, + "animationType": "number", + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "1", + "appliesto": "flexItemsAndInFlowPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-shrink" + }, + "flex-wrap": { + "syntax": "nowrap | wrap | wrap-reverse", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "nowrap", + "appliesto": "flexContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-wrap" + }, + "float": { + "syntax": "left | right | none | inline-start | inline-end", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "allElementsNoEffectIfDisplayNone", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/float" + }, + "font": { + "syntax": "[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar", + "media": "visual", + "inherited": true, + "animationType": [ + "font-style", + "font-variant", + "font-weight", + "font-stretch", + "font-size", + "line-height", + "font-family" + ], + "percentages": [ + "font-size", + "line-height" + ], + "groups": [ + "CSS Fonts" + ], + "initial": [ + "font-style", + "font-variant", + "font-weight", + "font-stretch", + "font-size", + "line-height", + "font-family" + ], + "appliesto": "allElementsAndText", + "computed": [ + "font-style", + "font-variant", + "font-weight", + "font-stretch", + "font-size", + "line-height", + "font-family" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font" + }, + "font-family": { + "syntax": "[ <family-name> | <generic-family> ]#", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "dependsOnUserAgent", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-family" + }, + "font-feature-settings": { + "syntax": "normal | <feature-tag-value>#", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-feature-settings" + }, + "font-kerning": { + "syntax": "auto | normal | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-kerning" + }, + "font-language-override": { + "syntax": "normal | <string>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-language-override" + }, + "font-optical-sizing": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing" + }, + "font-palette": { + "syntax": "normal | light | dark | <palette-identifier>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard" + }, + "font-variation-settings": { + "syntax": "normal | [ <string> <number> ]#", + "media": "visual", + "inherited": true, + "animationType": "transform", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variation-settings" + }, + "font-size": { + "syntax": "<absolute-size> | <relative-size> | <length-percentage>", + "media": "visual", + "inherited": true, + "animationType": "length", + "percentages": "referToParentElementsFontSize", + "groups": [ + "CSS Fonts" + ], + "initial": "medium", + "appliesto": "allElementsAndText", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-size" + }, + "font-size-adjust": { + "syntax": "none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]", + "media": "visual", + "inherited": true, + "animationType": "number", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "none", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-size-adjust" + }, + "font-smooth": { + "syntax": "auto | never | always | <absolute-size> | <length>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-smooth" + }, + "font-stretch": { + "syntax": "<font-stretch-absolute>", + "media": "visual", + "inherited": true, + "animationType": "fontStretch", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-stretch" + }, + "font-style": { + "syntax": "normal | italic | oblique <angle>?", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueTypeNormalAnimatesAsObliqueZeroDeg", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-style" + }, + "font-synthesis": { + "syntax": "none | [ weight || style || small-caps || position]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "weight style small-caps position ", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis" + }, + "font-synthesis-position": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "none", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-position" + }, + "font-synthesis-small-caps": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps" + }, + "font-synthesis-style": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style" + }, + "font-synthesis-weight": { + "syntax": "auto | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight" + }, + "font-variant": { + "syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant" + }, + "font-variant-alternates": { + "syntax": "normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates" + }, + "font-variant-caps": { + "syntax": "normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-caps" + }, + "font-variant-east-asian": { + "syntax": "normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian" + }, + "font-variant-emoji": { + "syntax": "normal | text | emoji | unicode", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard" + }, + "font-variant-ligatures": { + "syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures" + }, + "font-variant-numeric": { + "syntax": "normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric" + }, + "font-variant-position": { + "syntax": "normal | sub | super", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-position" + }, + "font-weight": { + "syntax": "<font-weight-absolute> | bolder | lighter", + "media": "visual", + "inherited": true, + "animationType": "fontWeight", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElementsAndText", + "computed": "keywordOrNumericalValueBolderLighterTransformedToRealValue", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-weight" + }, + "forced-color-adjust": { + "syntax": "auto | none | preserve-parent-color", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Color" + ], + "initial": "auto", + "appliesto": "allElementsAndText", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust" + }, + "gap": { + "syntax": "<'row-gap'> <'column-gap'>?", + "media": "visual", + "inherited": false, + "animationType": [ + "row-gap", + "column-gap" + ], + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": [ + "row-gap", + "column-gap" + ], + "appliesto": "multiColumnElementsFlexContainersGridContainers", + "computed": [ + "row-gap", + "column-gap" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gap" + }, + "grid": { + "syntax": "<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>", + "media": "visual", + "inherited": false, + "animationType": [ + "grid-template-rows", + "grid-template-columns", + "grid-template-areas", + "grid-auto-rows", + "grid-auto-columns", + "grid-auto-flow", + "grid-column-gap", + "grid-row-gap", + "column-gap", + "row-gap" + ], + "percentages": [ + "grid-template-rows", + "grid-template-columns", + "grid-auto-rows", + "grid-auto-columns" + ], + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-template-rows", + "grid-template-columns", + "grid-template-areas", + "grid-auto-rows", + "grid-auto-columns", + "grid-auto-flow", + "grid-column-gap", + "grid-row-gap", + "column-gap", + "row-gap" + ], + "appliesto": "gridContainers", + "computed": [ + "grid-template-rows", + "grid-template-columns", + "grid-template-areas", + "grid-auto-rows", + "grid-auto-columns", + "grid-auto-flow", + "grid-column-gap", + "grid-row-gap", + "column-gap", + "row-gap" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid" + }, + "grid-area": { + "syntax": "<grid-line> [ / <grid-line> ]{0,3}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-row-start", + "grid-column-start", + "grid-row-end", + "grid-column-end" + ], + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": [ + "grid-row-start", + "grid-column-start", + "grid-row-end", + "grid-column-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-area" + }, + "grid-auto-columns": { + "syntax": "<track-size>+", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridContainers", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns" + }, + "grid-auto-flow": { + "syntax": "[ row | column ] || dense", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "row", + "appliesto": "gridContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow" + }, + "grid-auto-rows": { + "syntax": "<track-size>+", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridContainers", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows" + }, + "grid-column": { + "syntax": "<grid-line> [ / <grid-line> ]?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-column-start", + "grid-column-end" + ], + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": [ + "grid-column-start", + "grid-column-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column" + }, + "grid-column-end": { + "syntax": "<grid-line>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column-end" + }, + "grid-column-gap": { + "syntax": "<length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "0", + "appliesto": "gridContainers", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-gap" + }, + "grid-column-start": { + "syntax": "<grid-line>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column-start" + }, + "grid-gap": { + "syntax": "<'grid-row-gap'> <'grid-column-gap'>?", + "media": "visual", + "inherited": false, + "animationType": [ + "grid-row-gap", + "grid-column-gap" + ], + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-row-gap", + "grid-column-gap" + ], + "appliesto": "gridContainers", + "computed": [ + "grid-row-gap", + "grid-column-gap" + ], + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gap" + }, + "grid-row": { + "syntax": "<grid-line> [ / <grid-line> ]?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-row-start", + "grid-row-end" + ], + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": [ + "grid-row-start", + "grid-row-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row" + }, + "grid-row-end": { + "syntax": "<grid-line>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row-end" + }, + "grid-row-gap": { + "syntax": "<length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "0", + "appliesto": "gridContainers", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/row-gap" + }, + "grid-row-start": { + "syntax": "<grid-line>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "auto", + "appliesto": "gridItemsAndBoxesWithinGridContainer", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row-start" + }, + "grid-template": { + "syntax": "none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?", + "media": "visual", + "inherited": false, + "animationType": [ + "grid-template-columns", + "grid-template-rows", + "grid-template-areas" + ], + "percentages": [ + "grid-template-columns", + "grid-template-rows" + ], + "groups": [ + "CSS Grid Layout" + ], + "initial": [ + "grid-template-columns", + "grid-template-rows", + "grid-template-areas" + ], + "appliesto": "gridContainers", + "computed": [ + "grid-template-columns", + "grid-template-rows", + "grid-template-areas" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template" + }, + "grid-template-areas": { + "syntax": "none | <string>+", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "none", + "appliesto": "gridContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-areas" + }, + "grid-template-columns": { + "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpcDifferenceLpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "none", + "appliesto": "gridContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-columns" + }, + "grid-template-rows": { + "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpcDifferenceLpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Grid Layout" + ], + "initial": "none", + "appliesto": "gridContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-rows" + }, + "hanging-punctuation": { + "syntax": "none | [ first || [ force-end | allow-end ] || last ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation" + }, + "height": { + "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "allElementsButNonReplacedAndTableColumns", + "computed": "percentageAutoOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/height" + }, + "hyphenate-character": { + "syntax": "auto | <string>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hyphenate-character" + }, + "hyphenate-limit-chars": { + "syntax": "[ auto | <integer> ]{1,3}", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hyphenate-limit-chars" + }, + "hyphens": { + "syntax": "none | manual | auto", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "manual", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hyphens" + }, + "image-orientation": { + "syntax": "from-image | <angle> | [ <angle>? flip ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Images" + ], + "initial": "from-image", + "appliesto": "allElements", + "computed": "angleRoundedToNextQuarter", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image-orientation" + }, + "image-rendering": { + "syntax": "auto | crisp-edges | pixelated", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Images" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image-rendering" + }, + "image-resolution": { + "syntax": "[ from-image || <resolution> ] && snap?", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Images" + ], + "initial": "1dppx", + "appliesto": "allElements", + "computed": "asSpecifiedWithExceptionOfResolution", + "order": "uniqueOrder", + "status": "experimental" + }, + "ime-mode": { + "syntax": "auto | normal | active | inactive | disabled", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "textFields", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ime-mode" + }, + "initial-letter": { + "syntax": "normal | [ <number> <integer>? ]", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Inline" + ], + "initial": "normal", + "appliesto": "firstLetterPseudoElementsAndInlineLevelFirstChildren", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/initial-letter" + }, + "initial-letter-align": { + "syntax": "[ auto | alphabetic | hanging | ideographic ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Inline" + ], + "initial": "auto", + "appliesto": "firstLetterPseudoElementsAndInlineLevelFirstChildren", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/initial-letter-align" + }, + "inline-size": { + "syntax": "<'width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "inlineSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsWidthAndHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inline-size" + }, + "input-security": { + "syntax": "auto | none", + "media": "interactive", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "sensitiveTextInputs", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard" + }, + "inset": { + "syntax": "<'top'>{1,4}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalHeightOrWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "top", + "bottom", + "left", + "right" + ], + "appliesto": "positionedElements", + "computed": [ + "top", + "bottom", + "left", + "right" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset" + }, + "inset-block": { + "syntax": "<'top'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalHeightOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "inset-block-start", + "inset-block-end" + ], + "appliesto": "positionedElements", + "computed": [ + "inset-block-start", + "inset-block-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block" + }, + "inset-block-end": { + "syntax": "<'top'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalHeightOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "sameAsBoxOffsets", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-end" + }, + "inset-block-start": { + "syntax": "<'top'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalHeightOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "sameAsBoxOffsets", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-start" + }, + "inset-inline": { + "syntax": "<'top'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "inset-inline-start", + "inset-inline-end" + ], + "appliesto": "positionedElements", + "computed": [ + "inset-inline-start", + "inset-inline-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline" + }, + "inset-inline-end": { + "syntax": "<'top'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "sameAsBoxOffsets", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-end" + }, + "inset-inline-start": { + "syntax": "<'top'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "sameAsBoxOffsets", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-start" + }, + "interpolate-size": { + "syntax": "numeric-only | allow-keywords", + "media": "none", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Units" + ], + "initial": "numeric-only", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/interpolate-size" + }, + "isolation": { + "syntax": "auto | isolate", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "Compositing and Blending" + ], + "initial": "auto", + "appliesto": "allElementsSVGContainerGraphicsAndGraphicsReferencingElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/isolation" + }, + "justify-content": { + "syntax": "normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "normal", + "appliesto": "flexContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-content" + }, + "justify-items": { + "syntax": "normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "legacy", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-items" + }, + "justify-self": { + "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": "auto", + "appliesto": "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-self" + }, + "justify-tracks": { + "syntax": "[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "normal", + "appliesto": "gridContainersWithMasonryLayoutInTheirInlineAxis", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-tracks" + }, + "left": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/left" + }, + "letter-spacing": { + "syntax": "normal | <length>", + "media": "visual", + "inherited": true, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "optimumValueOfAbsoluteLengthOrNormal", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/letter-spacing" + }, + "line-break": { + "syntax": "auto | loose | normal | strict | anywhere", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-break" + }, + "line-clamp": { + "syntax": "none | <integer>", + "media": "visual", + "inherited": false, + "animationType": "integer", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "none", + "appliesto": "blockContainersExceptMultiColumnContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental" + }, + "line-height": { + "syntax": "normal | <number> | <length> | <percentage>", + "media": "visual", + "inherited": true, + "animationType": "numberOrLength", + "percentages": "referToElementFontSize", + "groups": [ + "CSS Fonts" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "absoluteLengthOrAsSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-height" + }, + "line-height-step": { + "syntax": "<length>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Fonts" + ], + "initial": "0", + "appliesto": "blockContainers", + "computed": "absoluteLength", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-height-step" + }, + "list-style": { + "syntax": "<'list-style-type'> || <'list-style-position'> || <'list-style-image'>", + "media": "visual", + "inherited": true, + "animationType": [ + "list-style-image", + "list-style-position", + "list-style-type" + ], + "percentages": "no", + "groups": [ + "CSS Lists and Counters" + ], + "initial": [ + "list-style-type", + "list-style-position", + "list-style-image" + ], + "appliesto": "listItems", + "computed": [ + "list-style-image", + "list-style-position", + "list-style-type" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style" + }, + "list-style-image": { + "syntax": "<image> | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Lists and Counters" + ], + "initial": "none", + "appliesto": "listItems", + "computed": "theKeywordListStyleImageNoneOrComputedValue", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-image" + }, + "list-style-position": { + "syntax": "inside | outside", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Lists and Counters" + ], + "initial": "outside", + "appliesto": "listItems", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-position" + }, + "list-style-type": { + "syntax": "<counter-style> | <string> | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Lists and Counters" + ], + "initial": "disc", + "appliesto": "listItems", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-type" + }, + "margin": { + "syntax": "[ <length> | <percentage> | auto ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": [ + "margin-bottom", + "margin-left", + "margin-right", + "margin-top" + ], + "appliesto": "allElementsExceptTableDisplayTypes", + "computed": [ + "margin-bottom", + "margin-left", + "margin-right", + "margin-top" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin" + }, + "margin-block": { + "syntax": "<'margin-left'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "margin-block-start", + "margin-block-end" + ], + "appliesto": "sameAsMargin", + "computed": [ + "margin-block-start", + "margin-block-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block" + }, + "margin-block-end": { + "syntax": "<'margin-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsMargin", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-end" + }, + "margin-block-start": { + "syntax": "<'margin-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsMargin", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-start" + }, + "margin-bottom": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-bottom" + }, + "margin-inline": { + "syntax": "<'margin-left'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "margin-inline-start", + "margin-inline-end" + ], + "appliesto": "sameAsMargin", + "computed": [ + "margin-inline-start", + "margin-inline-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline" + }, + "margin-inline-end": { + "syntax": "<'margin-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsMargin", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-end" + }, + "margin-inline-start": { + "syntax": "<'margin-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "dependsOnLayoutModel", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsMargin", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-start" + }, + "margin-left": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-left" + }, + "margin-right": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-right" + }, + "margin-top": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-top" + }, + "margin-trim": { + "syntax": "none | in-flow | all", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "none", + "appliesto": "blockContainersAndMultiColumnContainers", + "computed": "asSpecified", + "order": "perGrammar", + "alsoAppliesTo": [ + "::first-letter" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-trim" + }, + "marker": { + "syntax": "none | <url>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": [ + "marker-start", + "marker-mid", + "marker-end" + ], + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/marker" + }, + "marker-end": { + "syntax": "none | <url>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecifiedURLsAbsolute", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/marker-end" + }, + "marker-mid": { + "syntax": "none | <url>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecifiedURLsAbsolute", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/marker-mid" + }, + "marker-start": { + "syntax": "none | <url>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecifiedURLsAbsolute", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/marker-start" + }, + "mask": { + "syntax": "<mask-layer>#", + "media": "visual", + "inherited": false, + "animationType": [ + "mask-image", + "mask-mode", + "mask-repeat", + "mask-position", + "mask-clip", + "mask-origin", + "mask-size", + "mask-composite" + ], + "percentages": [ + "mask-position" + ], + "groups": [ + "CSS Masking" + ], + "initial": [ + "mask-image", + "mask-mode", + "mask-repeat", + "mask-position", + "mask-clip", + "mask-origin", + "mask-size", + "mask-composite" + ], + "appliesto": "allElementsSVGContainerElements", + "computed": [ + "mask-image", + "mask-mode", + "mask-repeat", + "mask-position", + "mask-clip", + "mask-origin", + "mask-size", + "mask-composite" + ], + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask" + }, + "mask-border": { + "syntax": "<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>", + "media": "visual", + "inherited": false, + "animationType": [ + "mask-border-mode", + "mask-border-outset", + "mask-border-repeat", + "mask-border-slice", + "mask-border-source", + "mask-border-width" + ], + "percentages": [ + "mask-border-slice", + "mask-border-width" + ], + "groups": [ + "CSS Masking" + ], + "initial": [ + "mask-border-mode", + "mask-border-outset", + "mask-border-repeat", + "mask-border-slice", + "mask-border-source", + "mask-border-width" + ], + "appliesto": "allElementsSVGContainerElements", + "computed": [ + "mask-border-mode", + "mask-border-outset", + "mask-border-repeat", + "mask-border-slice", + "mask-border-source", + "mask-border-width" + ], + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border" + }, + "mask-border-mode": { + "syntax": "luminance | alpha", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "alpha", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-mode" + }, + "mask-border-outset": { + "syntax": "[ <length> | <number> ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "0", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-outset" + }, + "mask-border-repeat": { + "syntax": "[ stretch | repeat | round | space ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "stretch", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat" + }, + "mask-border-slice": { + "syntax": "<number-percentage>{1,4} fill?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "referToSizeOfMaskBorderImage", + "groups": [ + "CSS Masking" + ], + "initial": "0", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-slice" + }, + "mask-border-source": { + "syntax": "none | <image>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "none", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedURLsAbsolute", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-source" + }, + "mask-border-width": { + "syntax": "[ <length-percentage> | <number> | auto ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "relativeToMaskBorderImageArea", + "groups": [ + "CSS Masking" + ], + "initial": "auto", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-width" + }, + "mask-clip": { + "syntax": "[ <geometry-box> | no-clip ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "border-box", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-clip" + }, + "mask-composite": { + "syntax": "<compositing-operator>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "add", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-composite" + }, + "mask-image": { + "syntax": "<mask-reference>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "none", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedURLsAbsolute", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-image" + }, + "mask-mode": { + "syntax": "<masking-mode>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "match-source", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-mode" + }, + "mask-origin": { + "syntax": "<geometry-box>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "border-box", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-origin" + }, + "mask-position": { + "syntax": "<position>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "referToSizeOfMaskPaintingArea", + "groups": [ + "CSS Masking" + ], + "initial": "0% 0%", + "appliesto": "allElementsSVGContainerElements", + "computed": "consistsOfTwoKeywordsForOriginAndOffsets", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-position" + }, + "mask-repeat": { + "syntax": "<repeat-style>#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "repeat", + "appliesto": "allElementsSVGContainerElements", + "computed": "consistsOfTwoDimensionKeywords", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-repeat" + }, + "mask-size": { + "syntax": "<bg-size>#", + "media": "visual", + "inherited": false, + "animationType": "repeatableList", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "auto", + "appliesto": "allElementsSVGContainerElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-size" + }, + "mask-type": { + "syntax": "luminance | alpha", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Masking" + ], + "initial": "luminance", + "appliesto": "maskElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-type" + }, + "masonry-auto-flow": { + "syntax": "[ pack | next ] || [ definite-first | ordered ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Grid Layout" + ], + "initial": "pack", + "appliesto": "gridContainersWithMasonryLayout", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow" + }, + "math-depth": { + "syntax": "auto-add | add(<integer>) | <integer>", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "MathML" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-depth" + }, + "math-shift": { + "syntax": "normal | compact", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "MathML" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-shift" + }, + "math-style": { + "syntax": "normal | compact", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "MathML" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-style" + }, + "max-block-size": { + "syntax": "<'max-width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "blockSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsMaxWidthAndMaxHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-block-size" + }, + "max-height": { + "syntax": "none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentagesNone", + "groups": [ + "CSS Box Model" + ], + "initial": "none", + "appliesto": "allElementsButNonReplacedAndTableColumns", + "computed": "percentageAsSpecifiedAbsoluteLengthOrNone", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-height" + }, + "max-inline-size": { + "syntax": "<'max-width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "inlineSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "none", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsMaxWidthAndMaxHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-inline-size" + }, + "max-lines": { + "syntax": "none | <integer>", + "media": "visual", + "inherited": false, + "animationType": "integer", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "none", + "appliesto": "blockContainersExceptMultiColumnContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental" + }, + "max-width": { + "syntax": "none | <length-percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "none", + "appliesto": "allElementsButNonReplacedAndTableRows", + "computed": "percentageAsSpecifiedAbsoluteLengthOrNone", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-width" + }, + "min-block-size": { + "syntax": "<'min-width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "blockSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsMinWidthAndMinHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-block-size" + }, + "min-height": { + "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentages0", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "allElementsButNonReplacedAndTableColumns", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-height" + }, + "min-inline-size": { + "syntax": "<'min-width'>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "inlineSizeOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "sameAsWidthAndHeight", + "computed": "sameAsMinWidthAndMinHeight", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-inline-size" + }, + "min-width": { + "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "allElementsButNonReplacedAndTableRows", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-width" + }, + "mix-blend-mode": { + "syntax": "<blend-mode> | plus-lighter", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "Compositing and Blending" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode" + }, + "object-fit": { + "syntax": "fill | contain | cover | none | scale-down", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Images" + ], + "initial": "fill", + "appliesto": "replacedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/object-fit" + }, + "object-position": { + "syntax": "<position>", + "media": "visual", + "inherited": true, + "animationType": "repeatableList", + "percentages": "referToWidthAndHeightOfElement", + "groups": [ + "CSS Images" + ], + "initial": "50% 50%", + "appliesto": "replacedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/object-position" + }, + "offset": { + "syntax": "[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?", + "media": "visual", + "inherited": false, + "animationType": [ + "offset-position", + "offset-path", + "offset-distance", + "offset-anchor", + "offset-rotate" + ], + "percentages": [ + "offset-position", + "offset-distance", + "offset-anchor" + ], + "groups": [ + "CSS Motion Path" + ], + "initial": [ + "offset-position", + "offset-path", + "offset-distance", + "offset-anchor", + "offset-rotate" + ], + "appliesto": "transformableElements", + "computed": [ + "offset-position", + "offset-path", + "offset-distance", + "offset-anchor", + "offset-rotate" + ], + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset" + }, + "offset-anchor": { + "syntax": "auto | <position>", + "media": "visual", + "inherited": false, + "animationType": "position", + "percentages": "relativeToWidthAndHeight", + "groups": [ + "CSS Motion Path" + ], + "initial": "auto", + "appliesto": "transformableElements", + "computed": "forLengthAbsoluteValueOtherwisePercentage", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-anchor" + }, + "offset-distance": { + "syntax": "<length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToTotalPathLength", + "groups": [ + "CSS Motion Path" + ], + "initial": "0", + "appliesto": "transformableElements", + "computed": "forLengthAbsoluteValueOtherwisePercentage", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-distance" + }, + "offset-path": { + "syntax": "none | <offset-path> || <coord-box>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Motion Path" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-path" + }, + "offset-position": { + "syntax": "normal | auto | <position>", + "media": "visual", + "inherited": false, + "animationType": "position", + "percentages": "referToSizeOfContainingBlock", + "groups": [ + "CSS Motion Path" + ], + "initial": "normal", + "appliesto": "transformableElements", + "computed": "forLengthAbsoluteValueOtherwisePercentage", + "order": "perGrammar", + "status": "experimental" + }, + "offset-rotate": { + "syntax": "[ auto | reverse ] || <angle>", + "media": "visual", + "inherited": false, + "animationType": "angleOrBasicShapeOrPath", + "percentages": "no", + "groups": [ + "CSS Motion Path" + ], + "initial": "auto", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-rotate" + }, + "opacity": { + "syntax": "<alpha-value>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "mapToRange0To1", + "groups": [ + "CSS Color" + ], + "initial": "1", + "appliesto": "allElements", + "computed": "specifiedValueNumberClipped0To1", + "order": "perGrammar", + "alsoAppliesTo": [ + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/opacity" + }, + "order": { + "syntax": "<integer>", + "media": "visual", + "inherited": false, + "animationType": "integer", + "percentages": "no", + "groups": [ + "CSS Flexible Box Layout" + ], + "initial": "0", + "appliesto": "flexItemsGridItemsAbsolutelyPositionedContainerChildren", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/order" + }, + "orphans": { + "syntax": "<integer>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "2", + "appliesto": "blockContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/orphans" + }, + "outline": { + "syntax": "[ <'outline-width'> || <'outline-style'> || <'outline-color'> ]", + "media": [ + "visual", + "interactive" + ], + "inherited": false, + "animationType": [ + "outline-width", + "outline-style", + "outline-color" + ], + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": [ + "outline-width", + "outline-style", + "outline-color" + ], + "appliesto": "allElements", + "computed": [ + "outline-width", + "outline-style", + "outline-color" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline" + }, + "outline-color": { + "syntax": "auto | <color>", + "media": [ + "visual", + "interactive" + ], + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "autoForTranslucentColorRGBAOtherwiseRGB", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-color" + }, + "outline-offset": { + "syntax": "<length>", + "media": [ + "visual", + "interactive" + ], + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-offset" + }, + "outline-style": { + "syntax": "auto | <'border-style'>", + "media": [ + "visual", + "interactive" + ], + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-style" + }, + "outline-width": { + "syntax": "<line-width>", + "media": [ + "visual", + "interactive" + ], + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "medium", + "appliesto": "allElements", + "computed": "absoluteLength0ForNone", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-width" + }, + "overflow": { + "syntax": "[ visible | hidden | clip | scroll | auto ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "visible", + "appliesto": "blockContainersFlexContainersGridContainers", + "computed": [ + "overflow-x", + "overflow-y" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow" + }, + "overflow-anchor": { + "syntax": "auto | none", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Anchoring" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard" + }, + "overflow-block": { + "syntax": "visible | hidden | clip | scroll | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "auto", + "appliesto": "blockContainersFlexContainersGridContainers", + "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent", + "order": "perGrammar", + "status": "standard" + }, + "overflow-clip-box": { + "syntax": "padding-box | content-box", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Mozilla Extensions" + ], + "initial": "padding-box", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Mozilla/CSS/overflow-clip-box" + }, + "overflow-clip-margin": { + "syntax": "<visual-box> || <length [0,∞]>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "0px", + "appliesto": "allElements", + "computed": "theComputedLengthAndVisualBox", + "order": "perGrammar", + "status": "standard" + }, + "overflow-inline": { + "syntax": "visible | hidden | clip | scroll | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "auto", + "appliesto": "blockContainersFlexContainersGridContainers", + "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent", + "order": "perGrammar", + "status": "standard" + }, + "overflow-wrap": { + "syntax": "normal | break-word | anywhere", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "textElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-wrap" + }, + "overflow-x": { + "syntax": "visible | hidden | clip | scroll | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "visible", + "appliesto": "blockContainersFlexContainersGridContainers", + "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-x" + }, + "overflow-y": { + "syntax": "visible | hidden | clip | scroll | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "visible", + "appliesto": "blockContainersFlexContainersGridContainers", + "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-y" + }, + "overlay": { + "syntax": "none | auto", + "media": "visual", + "inherited": false, + "animationType": "discreteButVisibleForDurationWhenAnimatedNone", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overlay" + }, + "overscroll-behavior": { + "syntax": "[ contain | none | auto ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": [ + "overscroll-behavior-x", + "overscroll-behavior-y" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior" + }, + "overscroll-behavior-block": { + "syntax": "contain | none | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block" + }, + "overscroll-behavior-inline": { + "syntax": "contain | none | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline" + }, + "overscroll-behavior-x": { + "syntax": "contain | none | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x" + }, + "overscroll-behavior-y": { + "syntax": "contain | none | auto", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "nonReplacedBlockAndInlineBlockElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y" + }, + "padding": { + "syntax": "[ <length> | <percentage> ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": [ + "padding-bottom", + "padding-left", + "padding-right", + "padding-top" + ], + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": [ + "padding-bottom", + "padding-left", + "padding-right", + "padding-top" + ], + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding" + }, + "padding-block": { + "syntax": "<'padding-left'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "padding-block-start", + "padding-block-end" + ], + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": [ + "padding-block-start", + "padding-block-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block" + }, + "padding-block-end": { + "syntax": "<'padding-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "asLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-end" + }, + "padding-block-start": { + "syntax": "<'padding-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "asLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-start" + }, + "padding-bottom": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-bottom" + }, + "padding-inline": { + "syntax": "<'padding-left'>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": [ + "padding-inline-start", + "padding-inline-end" + ], + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": [ + "padding-inline-start", + "padding-inline-end" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline" + }, + "padding-inline-end": { + "syntax": "<'padding-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "asLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-end" + }, + "padding-inline-start": { + "syntax": "<'padding-left'>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "logicalWidthOfContainingBlock", + "groups": [ + "CSS Logical Properties" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "asLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-start" + }, + "padding-left": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-left" + }, + "padding-right": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-right" + }, + "padding-top": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "0", + "appliesto": "allElementsExceptInternalTableDisplayTypes", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-top" + }, + "page": { + "syntax": "auto | <custom-ident>", + "media": "paged", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Pages" + ], + "initial": "auto", + "appliesto": "blockElementsInNormalFlow", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page" + }, + "page-break-after": { + "syntax": "auto | always | avoid | left | right | recto | verso", + "media": [ + "visual", + "paged" + ], + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Pages" + ], + "initial": "auto", + "appliesto": "blockElementsInNormalFlow", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-after" + }, + "page-break-before": { + "syntax": "auto | always | avoid | left | right | recto | verso", + "media": [ + "visual", + "paged" + ], + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Pages" + ], + "initial": "auto", + "appliesto": "blockElementsInNormalFlow", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-before" + }, + "page-break-inside": { + "syntax": "auto | avoid", + "media": [ + "visual", + "paged" + ], + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Pages" + ], + "initial": "auto", + "appliesto": "blockElementsInNormalFlow", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-inside" + }, + "paint-order": { + "syntax": "normal | [ fill || stroke || markers ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "textElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/paint-order" + }, + "perspective": { + "syntax": "none | <length>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "absoluteLengthOrNone", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/perspective" + }, + "perspective-origin": { + "syntax": "<position>", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpc", + "percentages": "referToSizeOfBoundingBox", + "groups": [ + "CSS Transforms" + ], + "initial": "50% 50%", + "appliesto": "transformableElements", + "computed": "forLengthAbsoluteValueOtherwisePercentage", + "order": "oneOrTwoValuesLengthAbsoluteKeywordsPercentages", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/perspective-origin" + }, + "place-content": { + "syntax": "<'align-content'> <'justify-content'>?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": [ + "align-content", + "justify-content" + ], + "appliesto": "multilineFlexContainers", + "computed": [ + "align-content", + "justify-content" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-content" + }, + "place-items": { + "syntax": "<'align-items'> <'justify-items'>?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": [ + "align-items", + "justify-items" + ], + "appliesto": "allElements", + "computed": [ + "align-items", + "justify-items" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-items" + }, + "place-self": { + "syntax": "<'align-self'> <'justify-self'>?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Box Alignment" + ], + "initial": [ + "align-self", + "justify-self" + ], + "appliesto": "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems", + "computed": [ + "align-self", + "justify-self" + ], + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-self" + }, + "pointer-events": { + "syntax": "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/pointer-events" + }, + "position": { + "syntax": "static | relative | absolute | sticky | fixed", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "static", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position" + }, + "position-anchor": { + "syntax": "auto | <anchor-name>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "absolutelyPositionedElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-anchor" + }, + "position-area": { + "syntax": "none | <position-area>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "positionedElementsWithADefaultAnchorElement", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-area" + }, + "position-try": { + "syntax": "<'position-try-order'>? <'position-try-fallbacks'>", + "media": "visual", + "inherited": false, + "animationType": [ + "position-try-fallbacks", + "position-try-order" + ], + "percentages": [ + "position-try-fallbacks", + "position-try-order" + ], + "groups": [ + "CSS Positioning" + ], + "initial": [ + "position-try-fallbacks", + "position-try-order" + ], + "appliesto": "absolutelyPositionedElements", + "computed": [ + "position-try-fallbacks", + "position-try-order" + ], + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-try" + }, + "position-try-fallbacks": { + "syntax": "none | [ [<dashed-ident> || <try-tactic>] | <'position-area'> ]#", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "none", + "appliesto": "absolutelyPositionedElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-try-fallbacks" + }, + "position-try-order": { + "syntax": "normal | <try-size>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "normal", + "appliesto": "absolutelyPositionedElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-try-order" + }, + "position-visibility": { + "syntax": "always | [ anchors-valid || anchors-visible || no-overflow ]", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "anchors-visible", + "appliesto": "absolutelyPositionedElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position-visibility" + }, + "print-color-adjust": { + "syntax": "economy | exact", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Color" + ], + "initial": "economy", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/print-color-adjust" + }, + "quotes": { + "syntax": "none | auto | [ <string> <string> ]+", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Generated Content" + ], + "initial": "dependsOnUserAgent", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/quotes" + }, + "r": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportSize", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsCircle", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/r" + }, + "resize": { + "syntax": "none | both | horizontal | vertical | block | inline", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "none", + "appliesto": "elementsWithOverflowNotVisibleAndReplacedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/resize" + }, + "right": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/right" + }, + "rotate": { + "syntax": "none | <angle> | [ x | y | z | <number>{3} ] && <angle>", + "media": "visual", + "inherited": false, + "animationType": "transform", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/rotate" + }, + "row-gap": { + "syntax": "normal | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToDimensionOfContentArea", + "groups": [ + "CSS Box Alignment" + ], + "initial": "normal", + "appliesto": "multiColumnElementsFlexContainersGridContainers", + "computed": "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/row-gap" + }, + "ruby-align": { + "syntax": "start | center | space-between | space-around", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Ruby" + ], + "initial": "space-around", + "appliesto": "rubyBasesAnnotationsBaseAnnotationContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ruby-align" + }, + "ruby-merge": { + "syntax": "separate | collapse | auto", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Ruby" + ], + "initial": "separate", + "appliesto": "rubyAnnotationsContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental" + }, + "ruby-position": { + "syntax": "[ alternate || [ over | under ] ] | inter-character", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Ruby" + ], + "initial": "alternate", + "appliesto": "rubyAnnotationsContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ruby-position" + }, + "rx": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportWidth", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsEllipseRect", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/rx" + }, + "ry": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportHeight", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsEllipseRect", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ry" + }, + "scale": { + "syntax": "none | [ <number> | <percentage> ]{1,3}", + "media": "visual", + "inherited": false, + "animationType": "transform", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scale" + }, + "scrollbar-color": { + "syntax": "auto | <color>{2}", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scrollbars" + ], + "initial": "auto", + "appliesto": "scrollingBoxes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-color" + }, + "scrollbar-gutter": { + "syntax": "auto | stable && both-edges?", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "auto", + "appliesto": "scrollingBoxes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter" + }, + "scrollbar-width": { + "syntax": "auto | thin | none", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scrollbars" + ], + "initial": "auto", + "appliesto": "scrollingBoxes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-width" + }, + "scroll-behavior": { + "syntax": "auto | smooth", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Overflow" + ], + "initial": "auto", + "appliesto": "scrollingBoxes", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-behavior" + }, + "scroll-margin": { + "syntax": "<length>{1,4}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-margin-bottom", + "scroll-margin-left", + "scroll-margin-right", + "scroll-margin-top" + ], + "appliesto": "allElements", + "computed": [ + "scroll-margin-bottom", + "scroll-margin-left", + "scroll-margin-right", + "scroll-margin-top" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin" + }, + "scroll-margin-block": { + "syntax": "<length>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-margin-block-start", + "scroll-margin-block-end" + ], + "appliesto": "allElements", + "computed": [ + "scroll-margin-block-start", + "scroll-margin-block-end" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block" + }, + "scroll-margin-block-start": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start" + }, + "scroll-margin-block-end": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end" + }, + "scroll-margin-bottom": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom" + }, + "scroll-margin-inline": { + "syntax": "<length>{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-margin-inline-start", + "scroll-margin-inline-end" + ], + "appliesto": "allElements", + "computed": [ + "scroll-margin-inline-start", + "scroll-margin-inline-end" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline" + }, + "scroll-margin-inline-start": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start" + }, + "scroll-margin-inline-end": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end" + }, + "scroll-margin-left": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left" + }, + "scroll-margin-right": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right" + }, + "scroll-margin-top": { + "syntax": "<length>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top" + }, + "scroll-padding": { + "syntax": "[ auto | <length-percentage> ]{1,4}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-padding-bottom", + "scroll-padding-left", + "scroll-padding-right", + "scroll-padding-top" + ], + "appliesto": "scrollContainers", + "computed": [ + "scroll-padding-bottom", + "scroll-padding-left", + "scroll-padding-right", + "scroll-padding-top" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding" + }, + "scroll-padding-block": { + "syntax": "[ auto | <length-percentage> ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-padding-block-start", + "scroll-padding-block-end" + ], + "appliesto": "scrollContainers", + "computed": [ + "scroll-padding-block-start", + "scroll-padding-block-end" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block" + }, + "scroll-padding-block-start": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start" + }, + "scroll-padding-block-end": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end" + }, + "scroll-padding-bottom": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom" + }, + "scroll-padding-inline": { + "syntax": "[ auto | <length-percentage> ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": [ + "scroll-padding-inline-start", + "scroll-padding-inline-end" + ], + "appliesto": "scrollContainers", + "computed": [ + "scroll-padding-inline-start", + "scroll-padding-inline-end" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline" + }, + "scroll-padding-inline-start": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start" + }, + "scroll-padding-inline-end": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end" + }, + "scroll-padding-left": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left" + }, + "scroll-padding-right": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right" + }, + "scroll-padding-top": { + "syntax": "auto | <length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToTheScrollContainersScrollport", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "auto", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top" + }, + "scroll-snap-align": { + "syntax": "[ none | start | end | center ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align" + }, + "scroll-snap-coordinate": { + "syntax": "none | <position>#", + "media": "interactive", + "inherited": false, + "animationType": "position", + "percentages": "referToBorderBox", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate" + }, + "scroll-snap-destination": { + "syntax": "<position>", + "media": "interactive", + "inherited": false, + "animationType": "position", + "percentages": "relativeToScrollContainerPaddingBoxAxis", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "0px 0px", + "appliesto": "scrollContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination" + }, + "scroll-snap-points-x": { + "syntax": "none | repeat( <length-percentage> )", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "relativeToScrollContainerPaddingBoxAxis", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "scrollContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x" + }, + "scroll-snap-points-y": { + "syntax": "none | repeat( <length-percentage> )", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "relativeToScrollContainerPaddingBoxAxis", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "scrollContainers", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y" + }, + "scroll-snap-stop": { + "syntax": "normal | always", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop" + }, + "scroll-snap-type": { + "syntax": "none | [ x | y | block | inline | both ] [ mandatory | proximity ]?", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type" + }, + "scroll-snap-type-x": { + "syntax": "none | mandatory | proximity", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x" + }, + "scroll-snap-type-y": { + "syntax": "none | mandatory | proximity", + "media": "interactive", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Scroll Snap" + ], + "initial": "none", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "obsolete", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y" + }, + "scroll-timeline": { + "syntax": "[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#", + "media": "visual", + "inherited": false, + "animationType": [ + "scroll-timeline-name", + "scroll-timeline-axis" + ], + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": [ + "scroll-timeline-name", + "scroll-timeline-axis" + ], + "appliesto": "scrollContainers", + "computed": [ + "scroll-timeline-name", + "scroll-timeline-axis" + ], + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline" + }, + "scroll-timeline-axis": { + "syntax": "[ block | inline | x | y ]#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "block", + "appliesto": "scrollContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis" + }, + "scroll-timeline-name": { + "syntax": "none | <dashed-ident>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "none", + "appliesto": "scrollContainers", + "computed": "noneOrOrderedListOfIdentifiers", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name" + }, + "shape-image-threshold": { + "syntax": "<alpha-value>", + "media": "visual", + "inherited": false, + "animationType": "number", + "percentages": "no", + "groups": [ + "CSS Shapes" + ], + "initial": "0.0", + "appliesto": "floats", + "computed": "specifiedValueNumberClipped0To1", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold" + }, + "shape-margin": { + "syntax": "<length-percentage>", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Shapes" + ], + "initial": "0", + "appliesto": "floats", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-margin" + }, + "shape-outside": { + "syntax": "none | [ <shape-box> || <basic-shape> ] | <image>", + "media": "visual", + "inherited": false, + "animationType": "basicShapeOtherwiseNo", + "percentages": "no", + "groups": [ + "CSS Shapes" + ], + "initial": "none", + "appliesto": "floats", + "computed": "asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-outside" + }, + "shape-rendering": { + "syntax": "auto | optimizeSpeed | crispEdges | geometricPrecision", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Shapes" + ], + "initial": "auto", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-rendering" + }, + "stroke": { + "syntax": "", + "media": "visual", + "inherited": true, + "animationType": [ + "stroke-dasharray", + "stroke-dashoffset", + "stroke-linecap", + "stroke-linejoin", + "stroke-miterlimit", + "stroke-opacity", + "stroke-width" + ], + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": [ + "stroke-dasharray", + "stroke-dashoffset", + "stroke-linecap", + "stroke-linejoin", + "stroke-miterlimit", + "stroke-opacity", + "stroke-width" + ], + "appliesto": "asLonghands", + "computed": "asLonghands", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke" + }, + "stroke-dasharray": { + "syntax": "none | <dasharray>", + "media": "visual", + "inherited": true, + "animationType": "repeatableList", + "percentages": "referToSVGViewportDiagonal", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsShapes", + "computed": "listEachItemConsistingOfAbsoluteLengthPercentageOrKeyword", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-dasharray" + }, + "stroke-dashoffset": { + "syntax": "<length-percentage> | <number>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportDiagonal", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsShapes", + "computed": "absoluteLengthOrPercentageNumbersConverted", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-dashoffset" + }, + "stroke-linecap": { + "syntax": "butt | round | square", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "butt", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-linecap" + }, + "stroke-linejoin": { + "syntax": "miter | miter-clip | round | bevel | arcs", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "miter", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-linejoin" + }, + "stroke-miterlimit": { + "syntax": "<number>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "4", + "appliesto": "limitedSVGElementsShapes", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-miterlimit" + }, + "stroke-opacity": { + "syntax": "<'opacity'>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "1", + "appliesto": "limitedSVGElementsShapes", + "computed": "specifiedValueClipped0To1", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-opacity" + }, + "stroke-width": { + "syntax": "<length-percentage> | <number>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportDiagonal", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "1px", + "appliesto": "limitedSVGElementsShapes", + "computed": "absoluteLengthOrPercentageNumbersConverted", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/stroke-width" + }, + "tab-size": { + "syntax": "<integer> | <length>", + "media": "visual", + "inherited": true, + "animationType": "length", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "8", + "appliesto": "blockContainers", + "computed": "specifiedIntegerOrAbsoluteLength", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/tab-size" + }, + "table-layout": { + "syntax": "auto | fixed", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Table" + ], + "initial": "auto", + "appliesto": "tableElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/table-layout" + }, + "text-align": { + "syntax": "start | end | left | right | center | justify | match-parent", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "startOrNamelessValueIfLTRRightIfRTL", + "appliesto": "blockContainers", + "computed": "asSpecifiedExceptMatchParent", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-align" + }, + "text-align-last": { + "syntax": "auto | start | end | left | right | center | justify", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "blockContainers", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-align-last" + }, + "text-anchor": { + "syntax": "start | middle | end", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "start", + "appliesto": "limitedSVGElementsTextContent", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-anchor" + }, + "text-combine-upright": { + "syntax": "none | all | [ digits <integer>? ]", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Writing Modes" + ], + "initial": "none", + "appliesto": "nonReplacedInlineElements", + "computed": "keywordPlusIntegerIfDigits", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-combine-upright" + }, + "text-decoration": { + "syntax": "<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>", + "media": "visual", + "inherited": false, + "animationType": [ + "text-decoration-color", + "text-decoration-style", + "text-decoration-line", + "text-decoration-thickness" + ], + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": [ + "text-decoration-color", + "text-decoration-style", + "text-decoration-line" + ], + "appliesto": "allElements", + "computed": [ + "text-decoration-line", + "text-decoration-style", + "text-decoration-color", + "text-decoration-thickness" + ], + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration" + }, + "text-decoration-color": { + "syntax": "<color>", + "media": "visual", + "inherited": false, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-color" + }, + "text-decoration-line": { + "syntax": "none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-line" + }, + "text-decoration-skip": { + "syntax": "none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "objects", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip" + }, + "text-decoration-skip-ink": { + "syntax": "auto | all | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink" + }, + "text-decoration-style": { + "syntax": "solid | double | dotted | dashed | wavy", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "solid", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-style" + }, + "text-decoration-thickness": { + "syntax": "auto | from-font | <length> | <percentage> ", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToElementFontSize", + "groups": [ + "CSS Text Decoration" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness" + }, + "text-emphasis": { + "syntax": "<'text-emphasis-style'> || <'text-emphasis-color'>", + "media": "visual", + "inherited": true, + "animationType": [ + "text-emphasis-color", + "text-emphasis-style" + ], + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": [ + "text-emphasis-style", + "text-emphasis-color" + ], + "appliesto": "allElements", + "computed": [ + "text-emphasis-style", + "text-emphasis-color" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis" + }, + "text-emphasis-color": { + "syntax": "<color>", + "media": "visual", + "inherited": true, + "animationType": "color", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "currentcolor", + "appliesto": "allElements", + "computed": "computedColor", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color" + }, + "text-emphasis-position": { + "syntax": "auto | [ over | under ] && [ right | left ]?", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position" + }, + "text-emphasis-style": { + "syntax": "none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style" + }, + "text-indent": { + "syntax": "<length-percentage> && hanging? && each-line?", + "media": "visual", + "inherited": true, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Text" + ], + "initial": "0", + "appliesto": "blockContainers", + "computed": "percentageOrAbsoluteLengthPlusKeywords", + "order": "lengthOrPercentageBeforeKeywords", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-indent" + }, + "text-justify": { + "syntax": "auto | inter-character | inter-word | none", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "inlineLevelAndTableCellElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-justify" + }, + "text-orientation": { + "syntax": "mixed | upright | sideways", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Writing Modes" + ], + "initial": "mixed", + "appliesto": "allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-orientation" + }, + "text-overflow": { + "syntax": "[ clip | ellipsis | <string> ]{1,2}", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "clip", + "appliesto": "blockContainerElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-overflow" + }, + "text-rendering": { + "syntax": "auto | optimizeSpeed | optimizeLegibility | geometricPrecision", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Miscellaneous" + ], + "initial": "auto", + "appliesto": "textElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-rendering" + }, + "text-shadow": { + "syntax": "none | <shadow-t>#", + "media": "visual", + "inherited": true, + "animationType": "shadowList", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "colorPlusThreeAbsoluteLengths", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-shadow" + }, + "text-size-adjust": { + "syntax": "none | auto | <percentage>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "referToSizeOfFont", + "groups": [ + "CSS Text" + ], + "initial": "autoForSmartphoneBrowsersSupportingInflation", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-size-adjust" + }, + "text-spacing-trim": { + "syntax": "space-all | normal | space-first | trim-start | trim-both | trim-all | auto", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "textElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-spacing-trim" + }, + "text-transform": { + "syntax": "none | capitalize | uppercase | lowercase | full-width | full-size-kana", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-transform" + }, + "text-underline-offset": { + "syntax": "auto | <length> | <percentage> ", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "referToElementFontSize", + "groups": [ + "CSS Text Decoration" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-offset" + }, + "text-underline-position": { + "syntax": "auto | from-font | [ under || [ left | right ] ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text Decoration" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-position" + }, + "text-wrap": { + "syntax": "<'text-wrap-mode> || <'text-wrap-style'>", + "media": "visual", + "inherited": true, + "animationType": [ + "text-wrap-mode", + "text-wrap-style" + ], + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "wrap", + "appliesto": "textAndBlockContainers", + "computed": [ + "text-wrap-mode", + "text-wrap-style" + ], + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-wrap" + }, + "text-wrap-mode": { + "syntax": "auto | wrap | nowrap", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "wrap", + "appliesto": "textAndBlockContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-wrap-mode" + }, + "text-wrap-style": { + "syntax": "auto | balance | stable | pretty", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "auto", + "appliesto": "textAndBlockContainers", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-wrap-style" + }, + "timeline-scope": { + "syntax": "none | <dashed-ident>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "noneOrOrderedListOfIdentifiers", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/timeline-scope" + }, + "top": { + "syntax": "<length> | <percentage> | auto", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToContainingBlockHeight", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/top" + }, + "touch-action": { + "syntax": "auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "Pointer Events" + ], + "initial": "auto", + "appliesto": "allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/touch-action" + }, + "transform": { + "syntax": "none | <transform-list>", + "media": "visual", + "inherited": false, + "animationType": "transform", + "percentages": "referToSizeOfBoundingBox", + "groups": [ + "CSS Transforms" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform" + }, + "transform-box": { + "syntax": "content-box | border-box | fill-box | stroke-box | view-box", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "view-box", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-box" + }, + "transform-origin": { + "syntax": "[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?", + "media": "visual", + "inherited": false, + "animationType": "simpleListOfLpc", + "percentages": "referToSizeOfBoundingBox", + "groups": [ + "CSS Transforms" + ], + "initial": "50% 50% 0", + "appliesto": "transformableElements", + "computed": "forLengthAbsoluteValueOtherwisePercentage", + "order": "oneOrTwoValuesLengthAbsoluteKeywordsPercentages", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-origin" + }, + "transform-style": { + "syntax": "flat | preserve-3d", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Transforms" + ], + "initial": "flat", + "appliesto": "transformableElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-style" + }, + "transition": { + "syntax": "<single-transition>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": [ + "transition-delay", + "transition-duration", + "transition-property", + "transition-timing-function", + "transition-behavior" + ], + "appliesto": "allElementsAndPseudos", + "computed": [ + "transition-delay", + "transition-duration", + "transition-property", + "transition-timing-function", + "transition-behavior" + ], + "order": "orderOfAppearance", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition" + }, + "transition-behavior": { + "syntax": "<transition-behavior-value>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-behavior" + }, + "transition-delay": { + "syntax": "<time>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": "0s", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-delay" + }, + "transition-duration": { + "syntax": "<time>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": "0s", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-duration" + }, + "transition-property": { + "syntax": "none | <single-transition-property>#", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": "all", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-property" + }, + "transition-timing-function": { + "syntax": "<easing-function>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Transitions" + ], + "initial": "ease", + "appliesto": "allElementsAndPseudos", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-timing-function" + }, + "translate": { + "syntax": "none | <length-percentage> [ <length-percentage> <length>? ]?", + "media": "visual", + "inherited": false, + "animationType": "transform", + "percentages": "referToSizeOfBoundingBox", + "groups": [ + "CSS Transforms" + ], + "initial": "none", + "appliesto": "transformableElements", + "computed": "asSpecifiedRelativeToAbsoluteLengths", + "order": "perGrammar", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/translate" + }, + "unicode-bidi": { + "syntax": "normal | embed | isolate | bidi-override | isolate-override | plaintext", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Writing Modes" + ], + "initial": "normal", + "appliesto": "allElementsSomeValuesNoEffectOnNonInlineElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/unicode-bidi" + }, + "user-select": { + "syntax": "auto | text | none | contain | all", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Basic User Interface" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/user-select" + }, + "vector-effect": { + "syntax": "none | non-scaling-stroke | non-scaling-size | non-rotation | fixed-position", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "none", + "appliesto": "limitedSVGElementsGraphicsAndUse", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/vector-effect" + }, + "vertical-align": { + "syntax": "baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>", + "media": "visual", + "inherited": false, + "animationType": "length", + "percentages": "referToLineHeight", + "groups": [ + "CSS Table" + ], + "initial": "baseline", + "appliesto": "inlineLevelAndTableCellElements", + "computed": "absoluteLengthOrKeyword", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/vertical-align" + }, + "view-timeline": { + "syntax": "[ <'view-timeline-name'> <'view-timeline-axis'>? ]#", + "media": "visual", + "inherited": false, + "animationType": [ + "view-timeline-name", + "view-timeline-axis" + ], + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": [ + "view-timeline-name", + "view-timeline-axis" + ], + "appliesto": "allElements", + "computed": [ + "view-timeline-name", + "view-timeline-axis" + ], + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline" + }, + "view-timeline-axis": { + "syntax": "[ block | inline | x | y ]#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "block", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis" + }, + "view-timeline-inset": { + "syntax": "[ [ auto | <length-percentage> ]{1,2} ]#", + "media": "interactive", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "relativeToCorrespondingDimensionOfRelevantScrollport", + "groups": [ + "CSS Animations" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "listEachItemConsistingOfPairsOfAutoOrLengthPercentage", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset" + }, + "view-timeline-name": { + "syntax": "none | <dashed-ident>#", + "media": "interactive", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Animations" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "noneOrOrderedListOfIdentifiers", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-name" + }, + "view-transition-name": { + "syntax": "none | <custom-ident>", + "media": "visual", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS View Transitions" + ], + "initial": "none", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-transition-name" + }, + "visibility": { + "syntax": "visible | hidden | collapse", + "media": "visual", + "inherited": true, + "animationType": "visibility", + "percentages": "no", + "groups": [ + "CSS Box Model" + ], + "initial": "visible", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/visibility" + }, + "white-space": { + "syntax": "normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ]", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/white-space" + }, + "white-space-collapse": { + "syntax": "collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "collapse", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/white-space-collapse" + }, + "widows": { + "syntax": "<integer>", + "media": "visual", + "inherited": true, + "animationType": "byComputedValueType", + "percentages": "no", + "groups": [ + "CSS Fragmentation" + ], + "initial": "2", + "appliesto": "blockContainerElements", + "computed": "asSpecified", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/widows" + }, + "width": { + "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content | fit-content(<length-percentage>)", + "media": "visual", + "inherited": false, + "animationType": "lpc", + "percentages": "referToWidthOfContainingBlock", + "groups": [ + "CSS Box Model" + ], + "initial": "auto", + "appliesto": "allElementsButNonReplacedAndTableRows", + "computed": "percentageAutoOrAbsoluteLength", + "order": "lengthOrPercentageBeforeKeywordIfBothPresent", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/width" + }, + "will-change": { + "syntax": "auto | <animateable-feature>#", + "media": "all", + "inherited": false, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Will Change" + ], + "initial": "auto", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/will-change" + }, + "word-break": { + "syntax": "normal | break-all | keep-all | break-word", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/word-break" + }, + "word-spacing": { + "syntax": "normal | <length>", + "media": "visual", + "inherited": true, + "animationType": "length", + "percentages": "referToWidthOfAffectedGlyph", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "absoluteLength", + "order": "uniqueOrder", + "alsoAppliesTo": [ + "::first-letter", + "::first-line", + "::placeholder" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/word-spacing" + }, + "word-wrap": { + "syntax": "normal | break-word", + "media": "visual", + "inherited": true, + "animationType": "discrete", + "percentages": "no", + "groups": [ + "CSS Text" + ], + "initial": "normal", + "appliesto": "nonReplacedInlineElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-wrap" + }, + "writing-mode": { + "syntax": "horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr", + "media": "visual", + "inherited": true, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "CSS Writing Modes" + ], + "initial": "horizontal-tb", + "appliesto": "allElementsExceptTableRowColumnGroupsTableRowsColumns", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/writing-mode" + }, + "x": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportWidth", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsGeometry", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/x" + }, + "y": { + "syntax": "<length> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "byComputedValueType", + "percentages": "referToSVGViewportHeight", + "groups": [ + "Scalable Vector Graphics" + ], + "initial": "0", + "appliesto": "limitedSVGElementsGeometry", + "computed": "percentageAsSpecifiedOrAbsoluteLength", + "order": "perGrammar", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/y" + }, + "z-index": { + "syntax": "auto | <integer>", + "media": "visual", + "inherited": false, + "animationType": "integer", + "percentages": "no", + "groups": [ + "CSS Positioning" + ], + "initial": "auto", + "appliesto": "positionedElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "stacking": true, + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/z-index" + }, + "zoom": { + "syntax": "normal | reset | <number> | <percentage>", + "media": "visual", + "inherited": false, + "animationType": "notAnimatable", + "percentages": "no", + "groups": [ + "Microsoft Extensions" + ], + "initial": "normal", + "appliesto": "allElements", + "computed": "asSpecified", + "order": "uniqueOrder", + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/zoom" + } +} diff --git a/vanilla/node_modules/mdn-data/css/properties.schema.json b/vanilla/node_modules/mdn-data/css/properties.schema.json new file mode 100644 index 0000000..d9ca646 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/properties.schema.json @@ -0,0 +1,449 @@ +{ + "definitions": { + "propertyList": { + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "type": "string", + "property-reference": { + "comment": "property-reference is an extension to the JSON schema validator. Here it jumps to the root level of the hierarchy and tests if a value is an existing key there (i.e a defined property). See test/validate-schema.js for implementation details.", + "$data": "/" + } + } + }, + "animationType": { + "enum": [ + "angleBasicShapeOrPath", + "angleOrBasicShapeOrPath", + "basicShapeOtherwiseNo", + "byComputedValueType", + "byComputedValueTypeNormalAnimatesAsObliqueZeroDeg", + "color", + "discrete", + "discreteButVisibleForDurationWhenAnimatedHidden", + "discreteButVisibleForDurationWhenAnimatedNone", + "eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection", + "filterList", + "fontStretch", + "fontWeight", + "integer", + "length", + "lpc", + "notAnimatable", + "numberOrLength", + "number", + "position", + "rectangle", + "repeatableList", + "shadowList", + "simpleListOfLpc", + "simpleListOfLpcDifferenceLpc", + "transform", + "visibility" + ] + }, + "percentages": { + "enum": [ + "blockSizeOfContainingBlock", + "dependsOnLayoutModel", + "inlineSizeOfContainingBlock", + "lengthsAsPercentages", + "logicalHeightOfContainingBlock", + "logicalWidthOfContainingBlock", + "logicalHeightOrWidthOfContainingBlock", + "mapToRange0To1", + "maxZoomFactor", + "minZoomFactor", + "no", + "referToBorderBox", + "referToContainingBlockHeight", + "referToDimensionOfBorderBox", + "referToDimensionOfContentArea", + "referToElementFontSize", + "referToFlexContainersInnerMainSize", + "referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight", + "referToLineBoxWidth", + "referToLineHeight", + "referToParentElementsFontSize", + "referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize", + "referToSizeOfBorderImage", + "referToSizeOfBoundingBox", + "referToSizeOfContainingBlock", + "referToSizeOfElement", + "referToSizeOfFont", + "referToSizeOfMaskBorderImage", + "referToSizeOfMaskPaintingArea", + "referToSVGViewportHeight", + "referToSVGViewportSize", + "referToSVGViewportWidth", + "referToSVGViewportDiagonal", + "referToTotalPathLength", + "referToWidthAndHeightOfElement", + "referToWidthOfAffectedGlyph", + "referToWidthOfBackgroundPositioningAreaMinusBackgroundImageWidth", + "referToWidthOfContainingBlock", + "referToWidthOrHeightOfBorderImageArea", + "referToReferenceBoxWhenSpecifiedOtherwiseBorderBox", + "regardingHeightOfGeneratedBoxContainingBlockPercentages0", + "regardingHeightOfGeneratedBoxContainingBlockPercentagesNone", + "regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock", + "relativeToBackgroundPositioningArea", + "relativeToCorrespondingDimensionOfRelevantScrollport", + "relativeToMaskBorderImageArea", + "relativeToScrollContainerPaddingBoxAxis", + "relativeToTheScrollContainersScrollport", + "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline", + "relativeToWidthAndHeight" + ] + }, + "computed": { + "enum": [ + "absoluteLength", + "absoluteLength0ForNone", + "absoluteLength0IfColumnRuleStyleNoneOrHidden", + "absoluteLengthOr0IfBorderBottomStyleNoneOrHidden", + "absoluteLengthOr0IfBorderLeftStyleNoneOrHidden", + "absoluteLengthOr0IfBorderRightStyleNoneOrHidden", + "absoluteLengthOr0IfBorderTopStyleNoneOrHidden", + "absoluteLengthOrAsSpecified", + "absoluteLengthOrKeyword", + "absoluteLengthOrNone", + "absoluteLengthOrNormal", + "absoluteLengthOrPercentage", + "absoluteLengthOrPercentageNumbersConverted", + "absoluteLengthsSpecifiedColorAsSpecified", + "absoluteLengthZeroIfBorderStyleNoneOrHidden", + "absoluteLengthZeroOrLarger", + "absoluteURIOrNone", + "angleRoundedToNextQuarter", + "asAutoOrColor", + "asColorOrAbsoluteURL", + "asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified", + "asLength", + "asLonghands", + "asSpecified", + "asSpecifiedAppliesToEachProperty", + "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent", + "asSpecifiedExceptMatchParent", + "asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent", + "asSpecifiedRelativeToAbsoluteLengths", + "asSpecifiedURLsAbsolute", + "asSpecifiedWithExceptionOfResolution", + "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn", + "asSpecifiedWithLengthValuesComputed", + "asSpecifiedWithVarsSubstituted", + "autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent", + "autoOrRectangle", + "colorPlusThreeAbsoluteLengths", + "computedColor", + "consistsOfTwoDimensionKeywords", + "consistsOfTwoKeywordsForOriginAndOffsets", + "forLengthAbsoluteValueOtherwisePercentage", + "autoForTranslucentColorRGBAOtherwiseRGB", + "keywordOrNumericalValueBolderLighterTransformedToRealValue", + "keywordPlusIntegerIfDigits", + "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto", + "listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin", + "listEachItemConsistingOfAbsoluteLengthPercentageOrKeyword", + "listEachItemConsistingOfNormalLengthPercentageOrNameLengthPercentage", + "listEachItemConsistingOfPairsOfAutoOrLengthPercentage", + "listEachItemHasTwoKeywordsOnePerDimension", + "listEachItemIdentifierOrNoneAuto", + "listEachItemTwoKeywordsOriginOffsets", + "noneOrImageWithAbsoluteURI", + "noneOrOrderedListOfIdentifiers", + "normalizedAngle", + "normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified", + "oneToFourPercentagesOrAbsoluteLengthsPlusFill", + "optimumValueOfAbsoluteLengthOrNormal", + "percentageAsSpecifiedAbsoluteLengthOrNone", + "percentageAsSpecifiedOrAbsoluteLength", + "percentageAutoOrAbsoluteLength", + "percentageOrAbsoluteLengthPlusKeywords", + "sameAsBoxOffsets", + "sameAsMaxWidthAndMaxHeight", + "sameAsMinWidthAndMinHeight", + "sameAsWidthAndHeight", + "specifiedIntegerOrAbsoluteLength", + "specifiedValueClipped0To1", + "specifiedValueNumberClipped0To1", + "theComputedLengthAndVisualBox", + "theKeywordListStyleImageNoneOrComputedValue", + "translucentValuesRGBAOtherwiseRGB", + "twoAbsoluteLengthOrPercentages", + "twoAbsoluteLengths" + ] + }, + "appliesto": { + "enum": [ + "absolutelyPositionedElements", + "allElements", + "allElementsAcceptingWidthOrHeight", + "allElementsAndPseudos", + "allElementsAndText", + "allElementsButNonReplacedAndTableColumns", + "allElementsButNonReplacedAndTableRows", + "allElementsCreatingNativeWindows", + "allElementsExceptGeneratedContentOrPseudoElements", + "allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes", + "allElementsExceptInternalTableDisplayTypes", + "allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups", + "allElementsExceptTableDisplayTypes", + "allElementsExceptTableElementsWhenCollapse", + "allElementsExceptTableRowColumnGroupsTableRowsColumns", + "allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns", + "allElementsNoEffectIfDisplayNone", + "allElementsSomeValuesNoEffectOnNonInlineElements", + "allElementsSVGContainerElements", + "allElementsSVGContainerGraphicsAndGraphicsReferencingElements", + "allElementsThatCanReferenceImages", + "allElementsThatGenerateAPrincipalBox", + "allElementsTreeAbidingPseudoElementsPageMarginBoxes", + "allElementsUAsNotRequiredWhenCollapse", + "anyElementEffectOnProgressAndMeter", + "asLonghands", + "beforeAndAfterPseudos", + "blockContainerElements", + "blockContainers", + "blockContainersAndMultiColumnContainers", + "blockContainersExceptMultiColumnContainers", + "blockContainersExceptTableWrappers", + "blockContainersFlexContainersGridContainers", + "blockContainersFlexContainersGridContainersInlineBoxesTableRowsSVGTextContentElements", + "blockContainersMultiColumnContainersFlexContainersGridContainers", + "blockElementsInNormalFlow", + "blockLevelElements", + "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems", + "boxElements", + "childrenOfBoxElements", + "directChildrenOfElementsWithDisplayMozBoxMozInlineBox", + "elementsForWhichLayoutContainmentCanApply", + "elementsForWhichSizeContainmentCanApply", + "elementsThatAcceptInput", + "elementsWithDefaultPreferredSize", + "elementsWithDisplayBoxOrInlineBox", + "elementsWithDisplayMarker", + "elementsWithDisplayMozBoxMozInlineBox", + "elementsWithOverflowNotVisibleAndReplacedElements", + "exclusionElements", + "firstLetterPseudoElementsAndInlineLevelFirstChildren", + "flexContainers", + "flexItemsAndAbsolutelyPositionedFlexContainerChildren", + "flexItemsAndInFlowPseudos", + "flexItemsGridItemsAbsolutelyPositionedContainerChildren", + "flexItemsGridItemsAndAbsolutelyPositionedBoxes", + "floats", + "gridContainers", + "gridContainersWithMasonryLayout", + "gridContainersWithMasonryLayoutInTheirBlockAxis", + "gridContainersWithMasonryLayoutInTheirInlineAxis", + "gridItemsAndBoxesWithinGridContainer", + "iframeElements", + "images", + "inFlowBlockLevelElements", + "inFlowChildrenOfBoxElements", + "inlineBoxesAndBlockContainers", + "inlineLevelAndTableCellElements", + "limitedSVGElements", + "limitedSVGElementsCircle", + "limitedSVGElementsEllipse", + "limitedSVGElementsEllipseRect", + "limitedSVGElementsFilterPrimitives", + "limitedSVGElementsGeometry", + "limitedSVGElementsGraphics", + "limitedSVGElementsGraphicsAndUse", + "limitedSVGElementsPath", + "limitedSVGElementsShapes", + "limitedSVGElementsShapesAndTextContent", + "limitedSVGElementsShapeText", + "limitedSVGElementsTextContent", + "listItems", + "maskElements", + "multicolElements", + "multiColumnElementsFlexContainersGridContainers", + "multilineFlexContainers", + "nonReplacedBlockAndInlineBlockElements", + "nonReplacedBlockElements", + "nonReplacedElements", + "nonReplacedInlineElements", + "positionedElements", + "positionedElementsWithADefaultAnchorElement", + "replacedElements", + "rubyAnnotationsContainers", + "rubyBasesAnnotationsBaseAnnotationContainers", + "sameAsMargin", + "sameAsWidthAndHeight", + "scrollContainers", + "scrollingBoxes", + "sensitiveTextInputs", + "tableCaptionElements", + "tableCellElements", + "tableElements", + "textAndBlockContainers", + "textElements", + "textFields", + "transformableElements", + "xulImageElements" + ] + }, + "alsoApplyTo": { + "type": "array", + "minItems": 1, + "uniqueItems": true, + "items": { + "enum": [ + "::first-letter", + "::first-line", + "::placeholder" + ] + } + }, + "order": { + "enum": [ + "canonicalOrder", + "lengthOrPercentageBeforeKeywordIfBothPresent", + "lengthOrPercentageBeforeKeywords", + "oneOrTwoValuesLengthAbsoluteKeywordsPercentages", + "orderOfAppearance", + "percentagesOrLengthsFollowedByFill", + "perGrammar", + "uniqueOrder" + ] + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental", + "obsolete" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/" + } + }, + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "required": [ + "syntax", + "inherited", + "animationType", + "percentages", + "groups", + "initial", + "appliesto", + "computed", + "order", + "status" + ], + "properties": { + "syntax": { + "type": "string" + }, + "media": { + "oneOf": [ + { + "type": "string", + "enum": [ + "all", + "aural", + "continuous", + "interactive", + "none", + "noPracticalMedia", + "paged", + "visual", + "visualInContinuousMediaNoEffectInOverflowColumns" + ] + }, + { + "type": "array", + "minItems": 2, + "uniqueItems": true, + "items": { + "type": "string", + "enum": [ + "interactive", + "paged", + "visual" + ] + } + } + ] + }, + "inherited": { + "type": "boolean" + }, + "animationType": { + "oneOf": [ + { + "$ref": "#/definitions/animationType" + }, + { + "$ref": "#/definitions/propertyList" + } + ] + }, + "percentages": { + "oneOf": [ + { + "$ref": "#/definitions/percentages" + }, + { + "$ref": "#/definitions/propertyList" + } + ] + }, + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "initial": { + "oneOf": [ + { + "type": "string" + }, + { + "$ref": "#/definitions/propertyList" + } + ] + }, + "appliesto": { + "$ref": "#/definitions/appliesto" + }, + "alsoAppliesTo": { + "$ref": "#/definitions/alsoApplyTo" + }, + "computed": { + "oneOf": [ + { + "$ref": "#/definitions/computed" + }, + { + "$ref": "#/definitions/propertyList" + } + ] + }, + "order": { + "$ref": "#/definitions/order" + }, + "stacking": { + "type": "boolean" + }, + "status": { + "$ref": "#/definitions/status" + }, + "mdn_url": { + "$ref": "#/definitions/mdn_url" + } + } + } +} diff --git a/vanilla/node_modules/mdn-data/css/selectors.json b/vanilla/node_modules/mdn-data/css/selectors.json new file mode 100644 index 0000000..db558dd --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/selectors.json @@ -0,0 +1,1071 @@ +{ + "Type selectors": { + "syntax": "element", + "groups": [ + "Basic Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Type_selectors" + }, + "Class selectors": { + "syntax": ".class", + "groups": [ + "Basic Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Class_selectors" + }, + "ID selectors": { + "syntax": "#id", + "groups": [ + "Basic Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ID_selectors" + }, + "Universal selectors": { + "syntax": "*", + "groups": [ + "Basic Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Universal_selectors" + }, + "Attribute selectors": { + "syntax": "[attr=value]", + "groups": [ + "Basic Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Attribute_selectors" + }, + "Selector list": { + "syntax": ",", + "groups": [ + "Grouping Selectors", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Selector_list" + }, + "Adjacent sibling combinator": { + "syntax": "A + B", + "groups": [ + "Combinators", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Adjacent_sibling_combinator" + }, + "General sibling combinator": { + "syntax": "A ~ B", + "groups": [ + "Combinators", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/General_sibling_combinator" + }, + "Child combinator": { + "syntax": "A > B", + "groups": [ + "Combinators", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Child_combinator" + }, + "Descendant combinator": { + "syntax": "A B", + "groups": [ + "Combinators", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Descendant_combinator" + }, + "Column combinator": { + "syntax": "A || B", + "groups": [ + "Combinators", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Column_combinator" + }, + "Pseudo-classes": { + "syntax": ":", + "groups": [ + "Pseudo", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Pseudo-classes" + }, + "Pseudo-elements": { + "syntax": "::", + "groups": [ + "Pseudo", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/Pseudo-elements" + }, + ":active": { + "syntax": ":active", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:active" + }, + ":any-link": { + "syntax": ":any-link", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:any-link" + }, + ":checked": { + "syntax": ":checked", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:checked" + }, + ":current": { + "syntax": ":current", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:current" + }, + ":blank": { + "syntax": ":blank", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:blank" + }, + ":default": { + "syntax": ":default", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:default" + }, + ":defined": { + "syntax": ":defined", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:defined" + }, + ":dir": { + "syntax": ":dir( [ ltr | rtl ] )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:dir" + }, + ":disabled": { + "syntax": ":disabled", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:disabled" + }, + ":empty": { + "syntax": ":empty", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:empty" + }, + ":enabled": { + "syntax": ":enabled", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:enabled" + }, + ":first": { + "syntax": ":first", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:first" + }, + ":first-child": { + "syntax": ":first-child", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:first-child" + }, + ":first-of-type": { + "syntax": ":first-of-type", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:first-of-type" + }, + ":fullscreen": { + "syntax": ":fullscreen", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:fullscreen" + }, + ":future": { + "syntax": ":future", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:future" + }, + ":focus": { + "syntax": ":focus", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:focus" + }, + ":focus-visible": { + "syntax": ":focus-visible", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:focus-visible" + }, + ":focus-within": { + "syntax": ":focus-within", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:focus-within" + }, + ":has": { + "syntax": ":has( <forgiving-relative-selector-list> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:has" + }, + ":host()": { + "syntax": ":host( <compound-selector> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:host()" + }, + ":host-context()": { + "syntax": ":host-context( <compound-selector> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:host-context()" + }, + ":hover": { + "syntax": ":hover", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:hover" + }, + ":indeterminate": { + "syntax": ":indeterminate", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:indeterminate" + }, + ":in-range": { + "syntax": ":in-range", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:in-range" + }, + ":invalid": { + "syntax": ":invalid", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:invalid" + }, + ":is": { + "syntax": ":is( <forgiving-selector-list> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:is" + }, + ":lang": { + "syntax": ":lang( <language-code> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:lang" + }, + ":last-child": { + "syntax": ":last-child", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:last-child" + }, + ":last-of-type": { + "syntax": ":last-of-type", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:last-of-type" + }, + ":left": { + "syntax": ":left", + "groups": [ + "Pseudo-classes", + "Selectors", + "CSS Pages" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:left" + }, + ":link": { + "syntax": ":link", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:link" + }, + ":local-link": { + "syntax": ":local-link", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:local-link" + }, + ":not": { + "syntax": ":not( <complex-selector-list> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:not" + }, + ":nth-child": { + "syntax": ":nth-child( <nth> [ of <complex-selector-list> ]? )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:nth-child" + }, + ":nth-last-child": { + "syntax": ":nth-last-child( <nth> [ of <complex-selector-list> ]? )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:nth-last-child" + }, + ":nth-last-of-type": { + "syntax": ":nth-last-of-type( <nth> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:nth-last-of-type" + }, + ":nth-of-type": { + "syntax": ":nth-of-type( <nth> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:nth-of-type" + }, + ":only-child": { + "syntax": ":only-child", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:only-child" + }, + ":only-of-type": { + "syntax": ":only-of-type", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:only-of-type" + }, + ":optional": { + "syntax": ":optional", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:optional" + }, + ":out-of-range": { + "syntax": ":out-of-range", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:out-of-range" + }, + ":past": { + "syntax": ":past", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:past" + }, + ":paused": { + "syntax": ":paused", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:paused" + }, + ":placeholder-shown": { + "syntax": ":placeholder-shown", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:placeholder-shown" + }, + ":playing": { + "syntax": ":playing", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:playing" + }, + ":read-only": { + "syntax": ":read-only", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:read-only" + }, + ":read-write": { + "syntax": ":read-write", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:read-write" + }, + ":required": { + "syntax": ":required", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:required" + }, + ":right": { + "syntax": ":right", + "groups": [ + "Pseudo-classes", + "Selectors", + "CSS Pages" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:right" + }, + ":root": { + "syntax": ":root", + "groups": [ + "Pseudo-classes", + "Selectors", + "CSS Pages" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:root" + }, + ":scope": { + "syntax": ":scope", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:scope" + }, + ":target": { + "syntax": ":target", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:target" + }, + "::target-text": { + "syntax": "::target-text", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::target-text" + }, + ":target-within": { + "syntax": ":target-within", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:target-within" + }, + ":user-invalid": { + "syntax": ":user-invalid", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:user-invalid" + }, + ":user-valid": { + "syntax": ":user-valid", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:user-valid" + }, + ":valid": { + "syntax": ":valid", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:valid" + }, + ":visited": { + "syntax": ":visited", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:visited" + }, + ":where": { + "syntax": ":where( <complex-selector-list> )", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:where" + }, + "::-moz-progress-bar": { + "syntax": "::-moz-progress-bar", + "groups": [ + "Pseudo-elements", + "Selectors", + "Mozilla Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-moz-progress-bar" + }, + "::-moz-range-progress": { + "syntax": "::-moz-range-progress", + "groups": [ + "Pseudo-elements", + "Selectors", + "Mozilla Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-moz-range-progress" + }, + "::-moz-range-thumb": { + "syntax": "::-moz-range-thumb", + "groups": [ + "Pseudo-elements", + "Selectors", + "Mozilla Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-moz-range-thumb" + }, + "::-moz-range-track": { + "syntax": "::-moz-range-track", + "groups": [ + "Pseudo-elements", + "Selectors", + "Mozilla Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-moz-range-track" + }, + "::-ms-browse": { + "syntax": "::-ms-browse", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-browse" + }, + "::-ms-check": { + "syntax": "::-ms-check", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-check" + }, + "::-ms-clear": { + "syntax": "::-ms-clear", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-clear" + }, + "::-ms-expand": { + "syntax": "::-ms-expand", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-expand" + }, + "::-ms-fill": { + "syntax": "::-ms-fill", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-fill" + }, + "::-ms-fill-lower": { + "syntax": "::-ms-fill-lower", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-fill-lower" + }, + "::-ms-fill-upper": { + "syntax": "::-ms-fill-upper", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-fill-upper" + }, + "::-ms-reveal": { + "syntax": "::-ms-reveal", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-reveal" + }, + "::-ms-thumb": { + "syntax": "::-ms-thumb", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-thumb" + }, + "::-ms-ticks-after": { + "syntax": "::-ms-ticks-after", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-ticks-after" + }, + "::-ms-ticks-before": { + "syntax": "::-ms-ticks-before", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-ticks-before" + }, + "::-ms-tooltip": { + "syntax": "::-ms-tooltip", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-tooltip" + }, + "::-ms-track": { + "syntax": "::-ms-track", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-track" + }, + "::-ms-value": { + "syntax": "::-ms-value", + "groups": [ + "Pseudo-elements", + "Selectors", + "Microsoft Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-value" + }, + "::-webkit-progress-bar": { + "syntax": "::-webkit-progress-bar", + "groups": [ + "Pseudo-elements", + "Selectors", + "WebKit Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-webkit-progress-bar" + }, + "::-webkit-progress-inner-value": { + "syntax": "::-webkit-progress-inner-value", + "groups": [ + "Pseudo-elements", + "Selectors", + "WebKit Extensions" + ], + "status": "nonstandard" + }, + "::-webkit-progress-value": { + "syntax": "::-webkit-progress-value", + "groups": [ + "Pseudo-elements", + "Selectors", + "WebKit Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-webkit-progress-value" + }, + "::-webkit-slider-runnable-track": { + "syntax": "::-webkit-slider-runnable-track", + "groups": [ + "Pseudo-elements", + "Selectors", + "WebKit Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-webkit-slider-runnable-track" + }, + "::-webkit-slider-thumb": { + "syntax": "::-webkit-slider-thumb", + "groups": [ + "Pseudo-elements", + "Selectors", + "WebKit Extensions" + ], + "status": "nonstandard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-webkit-slider-thumb" + }, + "::after": { + "syntax": "/* CSS3 syntax */\n::after\n\n/* CSS2 syntax */\n:after", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::after" + }, + "::backdrop": { + "syntax": "::backdrop", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::backdrop" + }, + "::before": { + "syntax": "/* CSS3 syntax */\n::before\n\n/* CSS2 syntax */\n:before", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::before" + }, + "::cue": { + "syntax": "::cue | ::cue( <selector> )", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::cue" + }, + "::cue-region": { + "syntax": "::cue-region | ::cue-region( <selector> )", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::cue-region" + }, + "::first-letter": { + "syntax": "/* CSS3 syntax */\n::first-letter\n\n/* CSS2 syntax */\n:first-letter", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::first-letter" + }, + "::first-line": { + "syntax": "/* CSS3 syntax */\n::first-line\n\n/* CSS2 syntax */\n:first-line", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::first-line" + }, + "::grammar-error": { + "syntax": "::grammar-error", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::grammar-error" + }, + "::marker": { + "syntax": "::marker", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::marker" + }, + "::part": { + "syntax": "::part( <ident>+ )", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::part" + }, + ":picture-in-picture": { + "syntax": ":picture-in-picture", + "groups": [ + "Pseudo-classes", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:picture-in-picture" + }, + "::placeholder": { + "syntax": "::placeholder", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::placeholder" + }, + "::selection": { + "syntax": "::selection", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::selection" + }, + "::slotted": { + "syntax": "::slotted( <compound-selector> )", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::slotted" + }, + "::spelling-error": { + "syntax": "::spelling-error", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::spelling-error" + }, + "::view-transition": { + "syntax": "::view-transition", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition" + }, + "::view-transition-group": { + "syntax": "::view-transition-group([ '*' | <custom-ident> ])", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-group" + }, + "::view-transition-image-pair": { + "syntax": "::view-transition-image-pair([ '*' | <custom-ident> ])", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-image-pair" + }, + "::view-transition-new": { + "syntax": "::view-transition-new([ '*' | <custom-ident> ])", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-new" + }, + "::view-transition-old": { + "syntax": "::view-transition-old([ '*' | <custom-ident> ])", + "groups": [ + "Pseudo-elements", + "Selectors" + ], + "status": "experimental", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::view-transition-old" + } +} diff --git a/vanilla/node_modules/mdn-data/css/selectors.schema.json b/vanilla/node_modules/mdn-data/css/selectors.schema.json new file mode 100644 index 0000000..67978ce --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/selectors.schema.json @@ -0,0 +1,36 @@ +{ + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "properties": { + "syntax": { + "type": "string" + }, + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/Web/CSS/" + } + }, + "required": [ + "syntax", + "groups", + "status" + ] + } +} diff --git a/vanilla/node_modules/mdn-data/css/syntaxes.json b/vanilla/node_modules/mdn-data/css/syntaxes.json new file mode 100644 index 0000000..08b197e --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/syntaxes.json @@ -0,0 +1,899 @@ +{ + "abs()": { + "syntax": "abs( <calc-sum> )" + }, + "absolute-size": { + "syntax": "xx-small | x-small | small | medium | large | x-large | xx-large | xxx-large" + }, + "acos()": { + "syntax": "acos( <calc-sum> )" + }, + "alpha-value": { + "syntax": "<number> | <percentage>" + }, + "angle-percentage": { + "syntax": "<angle> | <percentage>" + }, + "angular-color-hint": { + "syntax": "<angle-percentage>" + }, + "angular-color-stop": { + "syntax": "<color> && <color-stop-angle>?" + }, + "angular-color-stop-list": { + "syntax": "[ <angular-color-stop> [, <angular-color-hint>]? ]# , <angular-color-stop>" + }, + "animateable-feature": { + "syntax": "scroll-position | contents | <custom-ident>" + }, + "asin()": { + "syntax": "asin( <calc-sum> )" + }, + "atan()": { + "syntax": "atan( <calc-sum> )" + }, + "atan2()": { + "syntax": "atan2( <calc-sum>, <calc-sum> )" + }, + "attachment": { + "syntax": "scroll | fixed | local" + }, + "attr()": { + "syntax": "attr( <attr-name> <type-or-unit>? [, <attr-fallback> ]? )" + }, + "attr-matcher": { + "syntax": "[ '~' | '|' | '^' | '$' | '*' ]? '='" + }, + "attr-modifier": { + "syntax": "i | s" + }, + "attribute-selector": { + "syntax": "'[' <wq-name> ']' | '[' <wq-name> <attr-matcher> [ <string-token> | <ident-token> ] <attr-modifier>? ']'" + }, + "auto-repeat": { + "syntax": "repeat( [ auto-fill | auto-fit ] , [ <line-names>? <fixed-size> ]+ <line-names>? )" + }, + "auto-track-list": { + "syntax": "[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>? <auto-repeat>\n[ <line-names>? [ <fixed-size> | <fixed-repeat> ] ]* <line-names>?" + }, + "axis": { + "syntax": "block | inline | x | y" + }, + "baseline-position": { + "syntax": "[ first | last ]? baseline" + }, + "basic-shape": { + "syntax": "<inset()> | <circle()> | <ellipse()> | <polygon()> | <path()>" + }, + "bg-image": { + "syntax": "none | <image>" + }, + "bg-layer": { + "syntax": "<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>" + }, + "bg-position": { + "syntax": "[ [ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] | [ center | [ left | right ] <length-percentage>? ] && [ center | [ top | bottom ] <length-percentage>? ] ]" + }, + "bg-size": { + "syntax": "[ <length-percentage> | auto ]{1,2} | cover | contain" + }, + "blur()": { + "syntax": "blur( <length> )" + }, + "blend-mode": { + "syntax": "normal | multiply | screen | overlay | darken | lighten | color-dodge | color-burn | hard-light | soft-light | difference | exclusion | hue | saturation | color | luminosity" + }, + "box": { + "syntax": "border-box | padding-box | content-box" + }, + "brightness()": { + "syntax": "brightness( <number-percentage> )" + }, + "calc()": { + "syntax": "calc( <calc-sum> )" + }, + "calc-sum": { + "syntax": "<calc-product> [ [ '+' | '-' ] <calc-product> ]*" + }, + "calc-product": { + "syntax": "<calc-value> [ '*' <calc-value> | '/' <number> ]*" + }, + "calc-value": { + "syntax": "<number> | <dimension> | <percentage> | <calc-constant> | ( <calc-sum> )" + }, + "calc-constant": { + "syntax": "e | pi | infinity | -infinity | NaN" + }, + "cf-final-image": { + "syntax": "<image> | <color>" + }, + "cf-mixing-image": { + "syntax": "<percentage>? && <image>" + }, + "circle()": { + "syntax": "circle( [ <shape-radius> ]? [ at <position> ]? )" + }, + "clamp()": { + "syntax": "clamp( <calc-sum>#{3} )" + }, + "class-selector": { + "syntax": "'.' <ident-token>" + }, + "clip-source": { + "syntax": "<url>" + }, + "color": { + "syntax": "<rgb()> | <rgba()> | <hsl()> | <hsla()> | <hwb()> | <lab()> | <lch()> | <oklab()> | <oklch()> | <color()> | <hex-color> | <named-color> | <system-color> | <deprecated-system-color> | currentcolor | transparent" + }, + "color-stop": { + "syntax": "<color-stop-length> | <color-stop-angle>" + }, + "color-stop-angle": { + "syntax": "<angle-percentage>{1,2}" + }, + "color-stop-length": { + "syntax": "<length-percentage>{1,2}" + }, + "color-stop-list": { + "syntax": "[ <linear-color-stop> [, <linear-color-hint>]? ]# , <linear-color-stop>" + }, + "color-interpolation-method": { + "syntax": "in [ <rectangular-color-space> | <polar-color-space> <hue-interpolation-method>? ]" + }, + "combinator": { + "syntax": "'>' | '+' | '~' | [ '||' ]" + }, + "common-lig-values": { + "syntax": "[ common-ligatures | no-common-ligatures ]" + }, + "compat-auto": { + "syntax": "searchfield | textarea | push-button | slider-horizontal | checkbox | radio | square-button | menulist | listbox | meter | progress-bar | button" + }, + "composite-style": { + "syntax": "clear | copy | source-over | source-in | source-out | source-atop | destination-over | destination-in | destination-out | destination-atop | xor" + }, + "compositing-operator": { + "syntax": "add | subtract | intersect | exclude" + }, + "compound-selector": { + "syntax": "[ <type-selector>? <subclass-selector>* [ <pseudo-element-selector> <pseudo-class-selector>* ]* ]!" + }, + "compound-selector-list": { + "syntax": "<compound-selector>#" + }, + "complex-selector": { + "syntax": "<compound-selector> [ <combinator>? <compound-selector> ]*" + }, + "complex-selector-list": { + "syntax": "<complex-selector>#" + }, + "conic-gradient()": { + "syntax": "conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )" + }, + "contextual-alt-values": { + "syntax": "[ contextual | no-contextual ]" + }, + "content-distribution": { + "syntax": "space-between | space-around | space-evenly | stretch" + }, + "content-list": { + "syntax": "[ <string> | contents | <image> | <counter> | <quote> | <target> | <leader()> ]+" + }, + "content-position": { + "syntax": "center | start | end | flex-start | flex-end" + }, + "content-replacement": { + "syntax": "<image>" + }, + "contrast()": { + "syntax": "contrast( [ <number-percentage> ] )" + }, + "cos()": { + "syntax": "cos( <calc-sum> )" + }, + "counter": { + "syntax": "<counter()> | <counters()>" + }, + "counter()": { + "syntax": "counter( <counter-name>, <counter-style>? )" + }, + "counter-name": { + "syntax": "<custom-ident>" + }, + "counter-style": { + "syntax": "<counter-style-name> | symbols()" + }, + "counter-style-name": { + "syntax": "<custom-ident>" + }, + "counters()": { + "syntax": "counters( <counter-name>, <string>, <counter-style>? )" + }, + "cross-fade()": { + "syntax": "cross-fade( <cf-mixing-image> , <cf-final-image>? )" + }, + "cubic-bezier-timing-function": { + "syntax": "ease | ease-in | ease-out | ease-in-out | cubic-bezier(<number [0,1]>, <number>, <number [0,1]>, <number>)" + }, + "deprecated-system-color": { + "syntax": "ActiveBorder | ActiveCaption | AppWorkspace | Background | ButtonFace | ButtonHighlight | ButtonShadow | ButtonText | CaptionText | GrayText | Highlight | HighlightText | InactiveBorder | InactiveCaption | InactiveCaptionText | InfoBackground | InfoText | Menu | MenuText | Scrollbar | ThreeDDarkShadow | ThreeDFace | ThreeDHighlight | ThreeDLightShadow | ThreeDShadow | Window | WindowFrame | WindowText" + }, + "discretionary-lig-values": { + "syntax": "[ discretionary-ligatures | no-discretionary-ligatures ]" + }, + "display-box": { + "syntax": "contents | none" + }, + "display-inside": { + "syntax": "flow | flow-root | table | flex | grid | ruby" + }, + "display-internal": { + "syntax": "table-row-group | table-header-group | table-footer-group | table-row | table-cell | table-column-group | table-column | table-caption | ruby-base | ruby-text | ruby-base-container | ruby-text-container" + }, + "display-legacy": { + "syntax": "inline-block | inline-list-item | inline-table | inline-flex | inline-grid" + }, + "display-listitem": { + "syntax": "<display-outside>? && [ flow | flow-root ]? && list-item" + }, + "display-outside": { + "syntax": "block | inline | run-in" + }, + "drop-shadow()": { + "syntax": "drop-shadow( <length>{2,3} <color>? )" + }, + "east-asian-variant-values": { + "syntax": "[ jis78 | jis83 | jis90 | jis04 | simplified | traditional ]" + }, + "east-asian-width-values": { + "syntax": "[ full-width | proportional-width ]" + }, + "element()": { + "syntax": "element( <id-selector> )" + }, + "ellipse()": { + "syntax": "ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )" + }, + "ending-shape": { + "syntax": "circle | ellipse" + }, + "env()": { + "syntax": "env( <custom-ident> , <declaration-value>? )" + }, + "exp()": { + "syntax": "exp( <calc-sum> )" + }, + "explicit-track-list": { + "syntax": "[ <line-names>? <track-size> ]+ <line-names>?" + }, + "family-name": { + "syntax": "<string> | <custom-ident>+" + }, + "feature-tag-value": { + "syntax": "<string> [ <integer> | on | off ]?" + }, + "feature-type": { + "syntax": "@stylistic | @historical-forms | @styleset | @character-variant | @swash | @ornaments | @annotation" + }, + "feature-value-block": { + "syntax": "<feature-type> '{' <feature-value-declaration-list> '}'" + }, + "feature-value-block-list": { + "syntax": "<feature-value-block>+" + }, + "feature-value-declaration": { + "syntax": "<custom-ident>: <integer>+;" + }, + "feature-value-declaration-list": { + "syntax": "<feature-value-declaration>" + }, + "feature-value-name": { + "syntax": "<custom-ident>" + }, + "fill-rule": { + "syntax": "nonzero | evenodd" + }, + "filter-function": { + "syntax": "<blur()> | <brightness()> | <contrast()> | <drop-shadow()> | <grayscale()> | <hue-rotate()> | <invert()> | <opacity()> | <saturate()> | <sepia()>" + }, + "filter-function-list": { + "syntax": "[ <filter-function> | <url> ]+" + }, + "final-bg-layer": { + "syntax": "<'background-color'> || <bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment> || <box> || <box>" + }, + "fixed-breadth": { + "syntax": "<length-percentage>" + }, + "fixed-repeat": { + "syntax": "repeat( [ <integer [1,∞]> ] , [ <line-names>? <fixed-size> ]+ <line-names>? )" + }, + "fixed-size": { + "syntax": "<fixed-breadth> | minmax( <fixed-breadth> , <track-breadth> ) | minmax( <inflexible-breadth> , <fixed-breadth> )" + }, + "font-stretch-absolute": { + "syntax": "normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded | <percentage>" + }, + "font-variant-css21": { + "syntax": "[ normal | small-caps ]" + }, + "font-weight-absolute": { + "syntax": "normal | bold | <number [1,1000]>" + }, + "frequency-percentage": { + "syntax": "<frequency> | <percentage>" + }, + "general-enclosed": { + "syntax": "[ <function-token> <any-value> ) ] | ( <ident> <any-value> )" + }, + "generic-family": { + "syntax": "serif | sans-serif | cursive | fantasy | monospace" + }, + "generic-name": { + "syntax": "serif | sans-serif | cursive | fantasy | monospace" + }, + "geometry-box": { + "syntax": "<shape-box> | fill-box | stroke-box | view-box" + }, + "gradient": { + "syntax": "<linear-gradient()> | <repeating-linear-gradient()> | <radial-gradient()> | <repeating-radial-gradient()> | <conic-gradient()> | <repeating-conic-gradient()>" + }, + "grayscale()": { + "syntax": "grayscale( <number-percentage> )" + }, + "grid-line": { + "syntax": "auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]" + }, + "historical-lig-values": { + "syntax": "[ historical-ligatures | no-historical-ligatures ]" + }, + "hsl()": { + "syntax": "hsl( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsl( <hue>, <percentage>, <percentage>, <alpha-value>? )" + }, + "hsla()": { + "syntax": "hsla( <hue> <percentage> <percentage> [ / <alpha-value> ]? ) | hsla( <hue>, <percentage>, <percentage>, <alpha-value>? )" + }, + "hue": { + "syntax": "<number> | <angle>" + }, + "hue-rotate()": { + "syntax": "hue-rotate( <angle> )" + }, + "hue-interpolation-method": { + "syntax": "[ shorter | longer | increasing | decreasing ] hue" + }, + "hwb()": { + "syntax": "hwb( [<hue> | none] [<percentage> | none] [<percentage> | none] [ / [<alpha-value> | none] ]? )" + }, + "hypot()": { + "syntax": "hypot( <calc-sum># )" + }, + "id-selector": { + "syntax": "<hash-token>" + }, + "image": { + "syntax": "<url> | <image()> | <image-set()> | <element()> | <paint()> | <cross-fade()> | <gradient>" + }, + "image()": { + "syntax": "image( <image-tags>? [ <image-src>? , <color>? ]! )" + }, + "image-set()": { + "syntax": "image-set( <image-set-option># )" + }, + "image-set-option": { + "syntax": "[ <image> | <string> ] [ <resolution> || type(<string>) ]" + }, + "image-src": { + "syntax": "<url> | <string>" + }, + "image-tags": { + "syntax": "ltr | rtl" + }, + "inflexible-breadth": { + "syntax": "<length-percentage> | min-content | max-content | auto" + }, + "inset()": { + "syntax": "inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )" + }, + "invert()": { + "syntax": "invert( <number-percentage> )" + }, + "keyframes-name": { + "syntax": "<custom-ident> | <string>" + }, + "keyframe-block": { + "syntax": "<keyframe-selector># {\n <declaration-list>\n}" + }, + "keyframe-block-list": { + "syntax": "<keyframe-block>+" + }, + "keyframe-selector": { + "syntax": "from | to | <percentage> | <timeline-range-name> <percentage>" + }, + "lab()": { + "syntax": "lab( [<percentage> | <number> | none] [ <percentage> | <number> | none] [ <percentage> | <number> | none] [ / [<alpha-value> | none] ]? )" + }, + "layer()": { + "syntax": "layer( <layer-name> )" + }, + "layer-name": { + "syntax": "<ident> [ '.' <ident> ]*" + }, + "lch()": { + "syntax": "lch( [<percentage> | <number> | none] [ <percentage> | <number> | none] [ <hue> | none] [ / [<alpha-value> | none] ]? )" + }, + "leader()": { + "syntax": "leader( <leader-type> )" + }, + "leader-type": { + "syntax": "dotted | solid | space | <string>" + }, + "length-percentage": { + "syntax": "<length> | <percentage>" + }, + "light-dark()": { + "syntax": "light-dark( <color>, <color> )" + }, + "line-names": { + "syntax": "'[' <custom-ident>* ']'" + }, + "line-name-list": { + "syntax": "[ <line-names> | <name-repeat> ]+" + }, + "line-style": { + "syntax": "none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset" + }, + "line-width": { + "syntax": "<length> | thin | medium | thick" + }, + "linear-color-hint": { + "syntax": "<length-percentage>" + }, + "linear-color-stop": { + "syntax": "<color> <color-stop-length>?" + }, + "linear-gradient()": { + "syntax": "linear-gradient( [ [ <angle> | to <side-or-corner> ] || <color-interpolation-method> ]? , <color-stop-list> )" + }, + "log()": { + "syntax": "log( <calc-sum>, <calc-sum>? )" + }, + "mask-layer": { + "syntax": "<mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <compositing-operator> || <masking-mode>" + }, + "mask-position": { + "syntax": "[ <length-percentage> | left | center | right ] [ <length-percentage> | top | center | bottom ]?" + }, + "mask-reference": { + "syntax": "none | <image> | <mask-source>" + }, + "mask-source": { + "syntax": "<url>" + }, + "masking-mode": { + "syntax": "alpha | luminance | match-source" + }, + "matrix()": { + "syntax": "matrix( <number>#{6} )" + }, + "matrix3d()": { + "syntax": "matrix3d( <number>#{16} )" + }, + "max()": { + "syntax": "max( <calc-sum># )" + }, + "media-and": { + "syntax": "<media-in-parens> [ and <media-in-parens> ]+" + }, + "media-condition": { + "syntax": "<media-not> | <media-and> | <media-or> | <media-in-parens>" + }, + "media-condition-without-or": { + "syntax": "<media-not> | <media-and> | <media-in-parens>" + }, + "media-feature": { + "syntax": "( [ <mf-plain> | <mf-boolean> | <mf-range> ] )" + }, + "media-in-parens": { + "syntax": "( <media-condition> ) | <media-feature> | <general-enclosed>" + }, + "media-not": { + "syntax": "not <media-in-parens>" + }, + "media-or": { + "syntax": "<media-in-parens> [ or <media-in-parens> ]+" + }, + "media-query": { + "syntax": "<media-condition> | [ not | only ]? <media-type> [ and <media-condition-without-or> ]?" + }, + "media-query-list": { + "syntax": "<media-query>#" + }, + "media-type": { + "syntax": "<ident>" + }, + "mf-boolean": { + "syntax": "<mf-name>" + }, + "mf-name": { + "syntax": "<ident>" + }, + "mf-plain": { + "syntax": "<mf-name> : <mf-value>" + }, + "mf-range": { + "syntax": "<mf-name> [ '<' | '>' ]? '='? <mf-value>\n| <mf-value> [ '<' | '>' ]? '='? <mf-name>\n| <mf-value> '<' '='? <mf-name> '<' '='? <mf-value>\n| <mf-value> '>' '='? <mf-name> '>' '='? <mf-value>" + }, + "mf-value": { + "syntax": "<number> | <dimension> | <ident> | <ratio>" + }, + "min()": { + "syntax": "min( <calc-sum># )" + }, + "minmax()": { + "syntax": "minmax( [ <length-percentage> | min-content | max-content | auto ] , [ <length-percentage> | <flex> | min-content | max-content | auto ] )" + }, + "mod()": { + "syntax": "mod( <calc-sum>, <calc-sum> )" + }, + "name-repeat": { + "syntax": "repeat( [ <integer [1,∞]> | auto-fill ], <line-names>+ )" + }, + "named-color": { + "syntax": "transparent | aliceblue | antiquewhite | aqua | aquamarine | azure | beige | bisque | black | blanchedalmond | blue | blueviolet | brown | burlywood | cadetblue | chartreuse | chocolate | coral | cornflowerblue | cornsilk | crimson | cyan | darkblue | darkcyan | darkgoldenrod | darkgray | darkgreen | darkgrey | darkkhaki | darkmagenta | darkolivegreen | darkorange | darkorchid | darkred | darksalmon | darkseagreen | darkslateblue | darkslategray | darkslategrey | darkturquoise | darkviolet | deeppink | deepskyblue | dimgray | dimgrey | dodgerblue | firebrick | floralwhite | forestgreen | fuchsia | gainsboro | ghostwhite | gold | goldenrod | gray | green | greenyellow | grey | honeydew | hotpink | indianred | indigo | ivory | khaki | lavender | lavenderblush | lawngreen | lemonchiffon | lightblue | lightcoral | lightcyan | lightgoldenrodyellow | lightgray | lightgreen | lightgrey | lightpink | lightsalmon | lightseagreen | lightskyblue | lightslategray | lightslategrey | lightsteelblue | lightyellow | lime | limegreen | linen | magenta | maroon | mediumaquamarine | mediumblue | mediumorchid | mediumpurple | mediumseagreen | mediumslateblue | mediumspringgreen | mediumturquoise | mediumvioletred | midnightblue | mintcream | mistyrose | moccasin | navajowhite | navy | oldlace | olive | olivedrab | orange | orangered | orchid | palegoldenrod | palegreen | paleturquoise | palevioletred | papayawhip | peachpuff | peru | pink | plum | powderblue | purple | rebeccapurple | red | rosybrown | royalblue | saddlebrown | salmon | sandybrown | seagreen | seashell | sienna | silver | skyblue | slateblue | slategray | slategrey | snow | springgreen | steelblue | tan | teal | thistle | tomato | turquoise | violet | wheat | white | whitesmoke | yellow | yellowgreen" + }, + "namespace-prefix": { + "syntax": "<ident>" + }, + "ns-prefix": { + "syntax": "[ <ident-token> | '*' ]? '|'" + }, + "number-percentage": { + "syntax": "<number> | <percentage>" + }, + "numeric-figure-values": { + "syntax": "[ lining-nums | oldstyle-nums ]" + }, + "numeric-fraction-values": { + "syntax": "[ diagonal-fractions | stacked-fractions ]" + }, + "numeric-spacing-values": { + "syntax": "[ proportional-nums | tabular-nums ]" + }, + "nth": { + "syntax": "<an-plus-b> | even | odd" + }, + "opacity()": { + "syntax": "opacity( [ <number-percentage> ] )" + }, + "overflow-position": { + "syntax": "unsafe | safe" + }, + "outline-radius": { + "syntax": "<length> | <percentage>" + }, + "page-body": { + "syntax": "<declaration>? [ ; <page-body> ]? | <page-margin-box> <page-body>" + }, + "page-margin-box": { + "syntax": "<page-margin-box-type> '{' <declaration-list> '}'" + }, + "page-margin-box-type": { + "syntax": "@top-left-corner | @top-left | @top-center | @top-right | @top-right-corner | @bottom-left-corner | @bottom-left | @bottom-center | @bottom-right | @bottom-right-corner | @left-top | @left-middle | @left-bottom | @right-top | @right-middle | @right-bottom" + }, + "page-selector-list": { + "syntax": "[ <page-selector># ]?" + }, + "page-selector": { + "syntax": "<pseudo-page>+ | <ident> <pseudo-page>*" + }, + "page-size": { + "syntax": "A5 | A4 | A3 | B5 | B4 | JIS-B5 | JIS-B4 | letter | legal | ledger" + }, + "path()": { + "syntax": "path( [ <fill-rule>, ]? <string> )" + }, + "paint()": { + "syntax": "paint( <ident>, <declaration-value>? )" + }, + "perspective()": { + "syntax": "perspective( [ <length [0,∞]> | none ] )" + }, + "polygon()": { + "syntax": "polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# )" + }, + "polar-color-space": { + "syntax": "hsl | hwb | lch | oklch" + }, + "position": { + "syntax": "[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ]" + }, + "pow()": { + "syntax": "pow( <calc-sum>, <calc-sum> )" + }, + "pseudo-class-selector": { + "syntax": "':' <ident-token> | ':' <function-token> <any-value> ')'" + }, + "pseudo-element-selector": { + "syntax": "':' <pseudo-class-selector>" + }, + "pseudo-page": { + "syntax": ": [ left | right | first | blank ]" + }, + "quote": { + "syntax": "open-quote | close-quote | no-open-quote | no-close-quote" + }, + "radial-gradient()": { + "syntax": "radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )" + }, + "ratio": { + "syntax": "<number [0,∞]> [ / <number [0,∞]> ]?" + }, + "ray()": { + "syntax": "ray( <angle> && <ray-size>? && contain? && [at <position>]? )" + }, + "ray-size": { + "syntax": "closest-side | closest-corner | farthest-side | farthest-corner | sides" + }, + "rectangular-color-space": { + "syntax": "srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | lab | oklab | xyz | xyz-d50 | xyz-d65" + }, + "relative-selector": { + "syntax": "<combinator>? <complex-selector>" + }, + "relative-selector-list": { + "syntax": "<relative-selector>#" + }, + "relative-size": { + "syntax": "larger | smaller" + }, + "rem()": { + "syntax": "rem( <calc-sum>, <calc-sum> )" + }, + "repeat-style": { + "syntax": "repeat-x | repeat-y | [ repeat | space | round | no-repeat ]{1,2}" + }, + "repeating-conic-gradient()": { + "syntax": "repeating-conic-gradient( [ from <angle> ]? [ at <position> ]?, <angular-color-stop-list> )" + }, + "repeating-linear-gradient()": { + "syntax": "repeating-linear-gradient( [ <angle> | to <side-or-corner> ]? , <color-stop-list> )" + }, + "repeating-radial-gradient()": { + "syntax": "repeating-radial-gradient( [ <ending-shape> || <size> ]? [ at <position> ]? , <color-stop-list> )" + }, + "reversed-counter-name": { + "syntax": "reversed( <counter-name> )" + }, + "rgb()": { + "syntax": "rgb( <percentage>{3} [ / <alpha-value> ]? ) | rgb( <number>{3} [ / <alpha-value> ]? ) | rgb( <percentage>#{3} , <alpha-value>? ) | rgb( <number>#{3} , <alpha-value>? )" + }, + "rgba()": { + "syntax": "rgba( <percentage>{3} [ / <alpha-value> ]? ) | rgba( <number>{3} [ / <alpha-value> ]? ) | rgba( <percentage>#{3} , <alpha-value>? ) | rgba( <number>#{3} , <alpha-value>? )" + }, + "rotate()": { + "syntax": "rotate( [ <angle> | <zero> ] )" + }, + "rotate3d()": { + "syntax": "rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )" + }, + "rotateX()": { + "syntax": "rotateX( [ <angle> | <zero> ] )" + }, + "rotateY()": { + "syntax": "rotateY( [ <angle> | <zero> ] )" + }, + "rotateZ()": { + "syntax": "rotateZ( [ <angle> | <zero> ] )" + }, + "round()": { + "syntax": "round( <rounding-strategy>?, <calc-sum>, <calc-sum> )" + }, + "rounding-strategy": { + "syntax": "nearest | up | down | to-zero" + }, + "saturate()": { + "syntax": "saturate( <number-percentage> )" + }, + "scale()": { + "syntax": "scale( [ <number> | <percentage> ]#{1,2} )" + }, + "scale3d()": { + "syntax": "scale3d( [ <number> | <percentage> ]#{3} )" + }, + "scaleX()": { + "syntax": "scaleX( [ <number> | <percentage> ] )" + }, + "scaleY()": { + "syntax": "scaleY( [ <number> | <percentage> ] )" + }, + "scaleZ()": { + "syntax": "scaleZ( [ <number> | <percentage> ] )" + }, + "scroll()": { + "syntax": "scroll( [ <axis> || <scroller> ]? )" + }, + "scroller": { + "syntax": "root | nearest | self" + }, + "self-position": { + "syntax": "center | start | end | self-start | self-end | flex-start | flex-end" + }, + "shape-radius": { + "syntax": "<length-percentage> | closest-side | farthest-side" + }, + "sign()": { + "syntax": "sign( <calc-sum> )" + }, + "skew()": { + "syntax": "skew( [ <angle> | <zero> ] , [ <angle> | <zero> ]? )" + }, + "skewX()": { + "syntax": "skewX( [ <angle> | <zero> ] )" + }, + "skewY()": { + "syntax": "skewY( [ <angle> | <zero> ] )" + }, + "sepia()": { + "syntax": "sepia( <number-percentage> )" + }, + "shadow": { + "syntax": "inset? && <length>{2,4} && <color>?" + }, + "shadow-t": { + "syntax": "[ <length>{2,3} && <color>? ]" + }, + "shape": { + "syntax": "rect(<top>, <right>, <bottom>, <left>)" + }, + "shape-box": { + "syntax": "<box> | margin-box" + }, + "side-or-corner": { + "syntax": "[ left | right ] || [ top | bottom ]" + }, + "sin()": { + "syntax": "sin( <calc-sum> )" + }, + "single-animation": { + "syntax": "<'animation-duration'> || <easing-function> || <'animation-delay'> || <single-animation-iteration-count> || <single-animation-direction> || <single-animation-fill-mode> || <single-animation-play-state> || [ none | <keyframes-name> ] || <single-animation-timeline>" + }, + "single-animation-direction": { + "syntax": "normal | reverse | alternate | alternate-reverse" + }, + "single-animation-fill-mode": { + "syntax": "none | forwards | backwards | both" + }, + "single-animation-iteration-count": { + "syntax": "infinite | <number>" + }, + "single-animation-play-state": { + "syntax": "running | paused" + }, + "single-animation-timeline": { + "syntax": "auto | none | <dashed-ident> | <scroll()> | <view()>" + }, + "single-transition": { + "syntax": "[ none | <single-transition-property> ] || <time> || <easing-function> || <time> || <transition-behavior-value>" + }, + "single-transition-property": { + "syntax": "all | <custom-ident>" + }, + "size": { + "syntax": "closest-side | farthest-side | closest-corner | farthest-corner | <length> | <length-percentage>{2}" + }, + "sqrt()": { + "syntax": "sqrt( <calc-sum> )" + }, + "step-position": { + "syntax": "jump-start | jump-end | jump-none | jump-both | start | end" + }, + "step-timing-function": { + "syntax": "step-start | step-end | steps(<integer>[, <step-position>]?)" + }, + "subclass-selector": { + "syntax": "<id-selector> | <class-selector> | <attribute-selector> | <pseudo-class-selector>" + }, + "supports-condition": { + "syntax": "not <supports-in-parens> | <supports-in-parens> [ and <supports-in-parens> ]* | <supports-in-parens> [ or <supports-in-parens> ]*" + }, + "supports-in-parens": { + "syntax": "( <supports-condition> ) | <supports-feature> | <general-enclosed>" + }, + "supports-feature": { + "syntax": "<supports-decl> | <supports-selector-fn>" + }, + "supports-decl": { + "syntax": "( <declaration> )" + }, + "supports-selector-fn": { + "syntax": "selector( <complex-selector> )" + }, + "symbol": { + "syntax": "<string> | <image> | <custom-ident>" + }, + "system-color": { + "syntax": "AccentColor | AccentColorText | ActiveText | ButtonBorder | ButtonFace | ButtonText | Canvas | CanvasText | Field | FieldText | GrayText | Highlight | HighlightText | LinkText | Mark | MarkText | SelectedItem | SelectedItemText | VisitedText" + }, + "tan()": { + "syntax": "tan( <calc-sum> )" + }, + "target": { + "syntax": "<target-counter()> | <target-counters()> | <target-text()>" + }, + "target-counter()": { + "syntax": "target-counter( [ <string> | <url> ] , <custom-ident> , <counter-style>? )" + }, + "target-counters()": { + "syntax": "target-counters( [ <string> | <url> ] , <custom-ident> , <string> , <counter-style>? )" + }, + "target-text()": { + "syntax": "target-text( [ <string> | <url> ] , [ content | before | after | first-letter ]? )" + }, + "time-percentage": { + "syntax": "<time> | <percentage>" + }, + "timeline-range-name": { + "syntax": "cover | contain | entry | exit | entry-crossing | exit-crossing" + }, + "easing-function": { + "syntax": "linear | <cubic-bezier-timing-function> | <step-timing-function>" + }, + "track-breadth": { + "syntax": "<length-percentage> | <flex> | min-content | max-content | auto" + }, + "track-list": { + "syntax": "[ <line-names>? [ <track-size> | <track-repeat> ] ]+ <line-names>?" + }, + "track-repeat": { + "syntax": "repeat( [ <integer [1,∞]> ] , [ <line-names>? <track-size> ]+ <line-names>? )" + }, + "track-size": { + "syntax": "<track-breadth> | minmax( <inflexible-breadth> , <track-breadth> ) | fit-content( <length-percentage> )" + }, + "transform-function": { + "syntax": "<matrix()> | <translate()> | <translateX()> | <translateY()> | <scale()> | <scaleX()> | <scaleY()> | <rotate()> | <skew()> | <skewX()> | <skewY()> | <matrix3d()> | <translate3d()> | <translateZ()> | <scale3d()> | <scaleZ()> | <rotate3d()> | <rotateX()> | <rotateY()> | <rotateZ()> | <perspective()>" + }, + "transform-list": { + "syntax": "<transform-function>+" + }, + "transition-behavior-value": { + "syntax": "normal | allow-discrete" + }, + "translate()": { + "syntax": "translate( <length-percentage> , <length-percentage>? )" + }, + "translate3d()": { + "syntax": "translate3d( <length-percentage> , <length-percentage> , <length> )" + }, + "translateX()": { + "syntax": "translateX( <length-percentage> )" + }, + "translateY()": { + "syntax": "translateY( <length-percentage> )" + }, + "translateZ()": { + "syntax": "translateZ( <length> )" + }, + "type-or-unit": { + "syntax": "string | color | url | integer | number | length | angle | time | frequency | cap | ch | em | ex | ic | lh | rlh | rem | vb | vi | vw | vh | vmin | vmax | mm | Q | cm | in | pt | pc | px | deg | grad | rad | turn | ms | s | Hz | kHz | %" + }, + "type-selector": { + "syntax": "<wq-name> | <ns-prefix>? '*'" + }, + "var()": { + "syntax": "var( <custom-property-name> , <declaration-value>? )" + }, + "view()": { + "syntax": "view([<axis> || <'view-timeline-inset'>]?)" + }, + "viewport-length": { + "syntax": "auto | <length-percentage>" + }, + "visual-box": { + "syntax": "content-box | padding-box | border-box" + }, + "wq-name": { + "syntax": "<ns-prefix>? <ident-token>" + } +} diff --git a/vanilla/node_modules/mdn-data/css/syntaxes.schema.json b/vanilla/node_modules/mdn-data/css/syntaxes.schema.json new file mode 100644 index 0000000..45632c4 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/syntaxes.schema.json @@ -0,0 +1,15 @@ +{ + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "required": [ + "syntax" + ], + "properties": { + "syntax": { + "type": "string" + } + } + } +} diff --git a/vanilla/node_modules/mdn-data/css/types.json b/vanilla/node_modules/mdn-data/css/types.json new file mode 100644 index 0000000..56b3848 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/types.json @@ -0,0 +1,287 @@ +{ + "an-plus-b": { + "groups": [ + "Selectors" + ], + "status": "standard" + }, + "angle": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/angle" + }, + "angle-percentage": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/angle-percentage" + }, + "basic-shape": { + "groups": [ + "CSS Shapes", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/basic-shape" + }, + "blend-mode": { + "groups": [ + "Compositing and Blending", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/blend-mode" + }, + "color": { + "groups": [ + "CSS Color", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color_value" + }, + "custom-ident": { + "groups": [ + "CSS Will Change", + "CSS Counter Styles", + "CSS Lists and Counters", + "CSS Animations", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/custom-ident" + }, + "dashed-ident": { + "groups": [ + "CSS Animations", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/dashed-ident" + }, + "dimension": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/dimension" + }, + "display-outside": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-outside" + }, + "display-inside": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-inside" + }, + "display-listitem": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-listitem" + }, + "display-internal": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-internal" + }, + "display-box": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-box" + }, + "display-legacy": { + "groups": [ + "CSS Display" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display-legacy" + }, + "easing-function": { + "groups": [ + "CSS Animations", + "CSS Transitions", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/easing-function" + }, + "filter-function": { + "groups": [ + "Filter Effects" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter-function" + }, + "flex": { + "groups": [ + "CSS Grid Layout", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex_value" + }, + "frequency": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/frequency" + }, + "frequency-percentage": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/frequency-percentage" + }, + "gradient": { + "groups": [ + "CSS Images", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gradient" + }, + "ident": { + "groups": [ + "CSS Types" + ], + "status": "standard" + }, + "image": { + "groups": [ + "CSS Images", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image" + }, + "integer": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/integer" + }, + "length": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/length" + }, + "length-percentage": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/length-percentage" + }, + "line-style": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-style" + }, + "number": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/number" + }, + "overflow": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow_value" + }, + "percentage": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/percentage" + }, + "position": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position_value" + }, + "ratio": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ratio" + }, + "resolution": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/resolution" + }, + "shape": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape" + }, + "string": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/string" + }, + "time": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/time" + }, + "time-percentage": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/time-percentage" + }, + "transform-function": { + "groups": [ + "CSS Transforms", + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-function" + }, + "url": { + "groups": [ + "CSS Types" + ], + "status": "standard", + "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/url" + } +} diff --git a/vanilla/node_modules/mdn-data/css/types.schema.json b/vanilla/node_modules/mdn-data/css/types.schema.json new file mode 100644 index 0000000..2200773 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/types.schema.json @@ -0,0 +1,32 @@ +{ + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "properties": { + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/Web/CSS/" + } + }, + "required": [ + "groups", + "status" + ] + } +} diff --git a/vanilla/node_modules/mdn-data/css/units.json b/vanilla/node_modules/mdn-data/css/units.json new file mode 100644 index 0000000..8a5b5c4 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/units.json @@ -0,0 +1,213 @@ +{ + "cap": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "ch": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "cm": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "deg": { + "groups": [ + "CSS Units", + "CSS Angles" + ], + "status": "standard" + }, + "dpcm": { + "groups": [ + "CSS Units", + "CSS Resolutions" + ], + "status": "standard" + }, + "dpi": { + "groups": [ + "CSS Units", + "CSS Resolutions" + ], + "status": "standard" + }, + "dppx": { + "groups": [ + "CSS Units", + "CSS Resolutions" + ], + "status": "standard" + }, + "em": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "ex": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "fr": { + "groups": [ + "CSS Units", + "CSS Flexible Lengths", + "CSS Grid Layout" + ], + "status": "standard" + }, + "grad": { + "groups": [ + "CSS Units", + "CSS Angles" + ], + "status": "standard" + }, + "Hz": { + "groups": [ + "CSS Units", + "CSS Frequencies" + ], + "status": "standard" + }, + "ic": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "in": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "kHz": { + "groups": [ + "CSS Units", + "CSS Frequencies" + ], + "status": "standard" + }, + "mm": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "ms": { + "groups": [ + "CSS Units", + "CSS Times" + ], + "status": "standard" + }, + "pc": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "pt": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "px": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "Q": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "rad": { + "groups": [ + "CSS Units", + "CSS Angles" + ], + "status": "standard" + }, + "rem": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "s": { + "groups": [ + "CSS Units", + "CSS Times" + ], + "status": "standard" + }, + "turn": { + "groups": [ + "CSS Units", + "CSS Angles" + ], + "status": "standard" + }, + "vh": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "vmax": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "vmin": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "vw": { + "groups": [ + "CSS Units", + "CSS Lengths" + ], + "status": "standard" + }, + "x": { + "groups": [ + "CSS Units", + "CSS Resolutions" + ], + "status": "standard" + } +} diff --git a/vanilla/node_modules/mdn-data/css/units.schema.json b/vanilla/node_modules/mdn-data/css/units.schema.json new file mode 100644 index 0000000..b60b461 --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/units.schema.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "properties": { + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental" + ] + } + }, + "required": [ + "groups", + "status" + ] + } +} |
