summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-position/position-relative-table-left-ref.html
blob: 7c1193b80007d8e7f89b35400a6d2ea2266cb3ac (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
<!DOCTYPE html>
<title>Reference for position:relative top constraint should behave correctly for table part elements</title>
<style>
table {
  border-collapse:collapse;
}

td {
  padding: 0;
}

td > div {
  height: 50px;
  width: 50px;
}

.group {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 200px;
}

.indicator {
  position: absolute;
  background-color: green;
  left: 100px;
  height: 50px;
  width: 50px;
}

</style>

<div class="group">
  <div>
    <div class="indicator"></div>
  </div>
</div>

<div>You should see a green box above. No red should be visible.</div>