blob: a7c8e4be8a1a7e3307b4754aea37a5734423a11c (
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
42
43
|
<!DOCTYPE html>
<style>
section {
width: 300px;
height: 100px;
border: blue 1px solid;
}
.cb {
position: relative;
}
abs {
position: absolute;
background: purple;
width: 100px;
height: 50px;
}
abs.p0 {
top: 0; left: 0;
background: blue;
}
</style>
<body>
<section>
123
<span class="cb">
456<br>
7
<abs></abs>
<abs class="p0"></abs>
</span>
</section>
<!-- Same -->
<section>
123
<span class="cb">
456<br>
7
<abs></abs>
<abs class="p0"></abs>
</span>
</section>
</body>
|