aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/ref/overflow_position_abs_simple_a.html
blob: 315b48bf8dbe9f6ebd42978be0744da769724d49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
  <head>
    <style>
      #first {
      height: 100px;
      width: 100px;
      overflow: hidden;
      position: relative;
      }
      #second {
      position: absolute;
      height: 100px;
      width: 200px;
      background: green;
      }
    </style>
  </head>
  <body>
    <div id="first">
      <div id="second">
      </div>
    </div>
  </body>
</html>