summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1147834-top-right-ref.html
blob: 8fa07ec082f0b3c46b1c93a1113b9ffcc0ade01a (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Overconstrained relative positioning</title>
    <style>
    .test {
      border: 1px solid black;
      height: 200px;
      width:  400px;
    }
    #inner1 {
      position: relative;
      left: 40px;
      top: 0px;
      height: 180px;
      width: 360px;
      background-color: teal;
    }
    </style>
  </head>
  <body>
    <div class="test">
      <div id="inner1"></div>
    </div>
  </body>
</html>