forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-shapes.json
78 lines (78 loc) · 2.83 KB
/
css-shapes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"spec": {
"title": "CSS Shapes Module Level 1",
"url": "https://drafts.csswg.org/css-shapes/"
},
"properties": {
"shape-outside": {
"name": "shape-outside",
"value": "none | [ <basic-shape> || <shape-box> ] | <image>",
"initial": "none",
"appliesTo": "floats",
"inherited": "no",
"percentages": "n/a",
"computedValue": "as defined for <basic-shape> (with <shape-box> following, if supplied); else the computed <image>; else the keyword as specified",
"canonicalOrder": "per grammar",
"animationType": "as defined for <basic-shape>, otherwise discrete",
"styleDeclaration": [
"shape-outside",
"shapeOutside"
]
},
"shape-image-threshold": {
"name": "shape-image-threshold",
"value": "<alpha-value>",
"initial": "0",
"appliesTo": "floats",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified number, clamped to the range [0,1]",
"canonicalOrder": "per grammar",
"animationType": "by computed value",
"styleDeclaration": [
"shape-image-threshold",
"shapeImageThreshold"
]
},
"shape-margin": {
"name": "shape-margin",
"value": "<length-percentage>",
"initial": "0",
"appliesTo": "floats",
"inherited": "no",
"percentages": "refer to the inline size of the containing block",
"computedValue": "computed <length-percentage> value",
"canonicalOrder": "per grammar",
"animationType": "by computed value",
"styleDeclaration": [
"shape-margin",
"shapeMargin"
]
}
},
"descriptors": {},
"valuespaces": {
"<shape-box>": {
"value": "<box> | margin-box"
},
"<inset()>": {
"value": "inset( <length-percentage>{1,4} [ round <'border-radius'> ]? )"
},
"<circle()>": {
"value": "circle( <shape-radius>? [ at <position> ]? )"
},
"<ellipse()>": {
"value": "ellipse( [ <shape-radius>{2} ]? [ at <position> ]? )"
},
"<polygon()>": {
"value": "polygon( <'fill-rule'>? , [<length-percentage> <length-percentage>]# )"
},
"<path()>": {
"value": "path( [<'fill-rule'>,]? <string> )"
},
"<shape-radius>": {
"value": "<length-percentage> | closest-side | farthest-side",
"prose": "Defines a radius for a circle or ellipse. If omitted it defaults to closest-side. closest-side uses the length from the center of the shape to the closest side of the reference box. For circles, this is the closest side in any dimension. For ellipses, this is the closest side in the radius dimension. farthest-side uses the length from the center of the shape to the farthest side of the reference box. For circles, this is the farthest side in any dimension. For ellipses, this is the farthest side in the radius dimension."
}
}
}