summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/line-gap-override-ref.html
blob: cb6d2ced1a336793bb121474a1c608a8106ffde8 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Tests the line-gap-override descriptor of @font-face</title>
<style>
.target {
  position: absolute;
  font-size: 20px;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 30px;
}

.character {
  display: inline-block;
  background-color: green;
  width: 1em;  /* Same as an 'X' in Ahem */
  height: 1em; /* Same as an 'X' in Ahem */
  position: absolute;
}

</style>
<div class="target">
  <span class="character" style="top: 0.5em; left: 0"></span>
  <span class="character" style="top: 2.5em; left: 0"></span>
</div>