summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding.html
blob: 21451a04fa5e9618276e0e518e82bbb7bb64b21d (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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<link rel="match" href="vertical-align-top-bottom-padding-ref.html">
<link rel="help" href="https://drafts.csswg.org/css2/visudet.html#propdef-vertical-align" />
<link rel="author" href="kojii@chromium.org">
<style>
div {
  margin-top: 50px;
  font-size: 10px;
  line-height: 1;
}

.inline-block {
  display: inline-block;
  height: 30px;
  width: 30px;
  background: blue;
}

.top .padding {
  padding-top: 20px;
}

.top .inline-block {
  vertical-align: top;
}

.bottom .padding {
  padding-bottom: 20px;
}

.bottom .inline-block {
  vertical-align: bottom;
}

</style>
<body>
  <div class="top">
    <span class="padding">
      Next
      <span class="inline-block"></span>
    </span>
  </div>
  <div class="bottom">
    <span class="padding">
      Next
      <span class="inline-block"></span>
    </span>
  </div>
</body>