-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.less
More file actions
48 lines (42 loc) · 779 Bytes
/
table.less
File metadata and controls
48 lines (42 loc) · 779 Bytes
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
.table {
border-color: #F0F0F0;
border-spacing: 2px 2px;
box-sizing: border-box;
display: table;
zoom: 1;
.tbody {
box-sizing: border-box;
display: table-row-group;
vertical-align: middle;
}
.td {
display: table-cell;
padding: 1px;
vertical-align: middle;
zoom: 1;
}
.tfoot {
box-sizing: border-box;
display: table-footer-group;
vertical-align: middle;
}
.th {
display: table-cell;
font-weight: bold;
padding: 1px;
text-align: center;
vertical-align: middle;
zoom: 1;
}
.thead {
box-sizing: border-box;
display: table-header-group;
vertical-align: middle;
}
.tr {
box-sizing: border-box;
display: table-row;
vertical-align: middle;
zoom: 1;
}
}