OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 .block { | |
4 position: absolute; | |
5 left:100px; | |
6 top:0; | |
7 width: 100px; | |
8 height: 100px; | |
9 background-color: green; | |
10 } | |
11 .relative-inline { | |
12 position:relative; | |
13 display: inline; | |
14 } | |
15 .relative { | |
16 position:relative; | |
17 left: 100px; | |
18 } | |
19 </style> | |
20 <p>crbug.com/517369: There should be no red. </p> | |
21 <div class="relative"> | |
22 <span class="relative-inline"> | |
23 <div style="margin-left: -100px;"> | |
24 <span class="relative-inline"> | |
25 <div class="block" id="inner"></div> | |
26 </span> | |
27 </div> | |
28 </span> | |
29 </div> | |
30 | |
OLD | NEW |