blob: 02a5ec0f439bbffbb05973c4193c9a849d6d6211 (
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
|
<!DOCTYPE html>
<title>Relative child can overflow onto the column gap area</title>
<style>
body {
margin: 0px;
}
.child {
width: 100px;
height: 50px;
background: green;
}
.child2 {
width: 100px;
height: 50px;
background: green;
position: absolute;
left: 125px;
top: 0px;
}
</style>
<div class="child"></div>
<div class="child2"></div>
|