forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-tables.json
85 lines (85 loc) · 2.24 KB
/
css-tables.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
79
80
81
82
83
84
85
{
"spec": {
"title": "CSS Table Module Level 3",
"url": "https://www.w3.org/TR/css-tables-3/"
},
"properties": {
"table-layout": {
"name": "table-layout",
"value": "auto | fixed",
"initial": "auto",
"appliesTo": "table grid boxes",
"inherited": "no",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"table-layout",
"tableLayout"
]
},
"border-collapse": {
"name": "border-collapse",
"value": "separate | collapse",
"initial": "separate",
"appliesTo": "table grid boxes",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"border-collapse",
"borderCollapse"
]
},
"border-spacing": {
"name": "border-spacing",
"value": "<length>{1,2}",
"initial": "0px 0px",
"appliesTo": "table grid boxes when border-collapse is separate",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "two absolute lengths",
"canonicalOrder": "per grammar",
"animationType": "by computed value",
"styleDeclaration": [
"border-spacing",
"borderSpacing"
]
},
"caption-side": {
"name": "caption-side",
"value": "top | bottom",
"initial": "top",
"appliesTo": "table-caption boxes",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"caption-side",
"captionSide"
]
},
"empty-cells": {
"name": "empty-cells",
"value": "show | hide",
"initial": "show",
"appliesTo": "table-cell boxes",
"inherited": "yes",
"percentages": "n/a",
"computedValue": "specified keyword",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"styleDeclaration": [
"empty-cells",
"emptyCells"
]
}
},
"descriptors": {},
"valuespaces": {}
}