Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ca4bc34e5bf1f36c445cc9b7612553b6059d569a (plain) (blame)
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

root {
  display: block;
}

div {
  display: block;
}

table {
  display: table;
}

tbody {
  display: table-row-group;
}

thead {
  display: table-header-group;
}

tr {
  display: table-row;
}

td {
  display: table-cell;
}

b {
  display: inline;
}

p {
  display: block;
}

Back to the top