summaryrefslogtreecommitdiff
path: root/testsuite/reftests/css-em-label-size.css
blob: 8859aa22947822c3a368232ecab0f536f15cbaf3 (plain)
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
window {
  -gtk-dpi: 96;
  font-size: 12px;
}

.test label:last-child {
  color: red;
  font-size: 1em;
}

.px {
  font-size: 12px;
}

.pt {
  font-size: 12pt;
}

.in {
  font-size: 0.25in;
}

.cm {
  font-size: 0.635cm; /* quarter inch */
}

.mm {
  font-size: 6.35mm;  /* quarter inch */
}

.em {
  font-size: 1.5em;
}

.ex {
  font-size: 2.5ex;
}