summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-absolute-root-element-ref.html
blob: d4649f2d5abc240f09551cc9efebfa2029406101 (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>
<html>
  <meta charset="UTF-8">
  <title>CSS Position Reference: Box inset properties & position:absolute root element</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">

  <style>
  html {
    display: block;
    position: absolute;
    left: 10px;
    right: 20px;
    top: 30px;
    bottom: 40px;
    border: 5px dashed black;
    box-sizing: border-box;
  }
  </style>

  The black border should encompass the whole viewport,
  with a bit of space on each side.
  <br><br>
  It shouldn't just shrinkwrap this text's height.
</html>