blob: f546e6063b13916db2485ab903d0c2e50722f5fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#parent {
position: relative;
width: 400px;
height: 400px;
background: red;
border: 0 solid black;
}
#child {
position: absolute;
width: 100px;
left: 100px;
background: blue;
border: 0 solid black;
}
.floatTop {
width: 10px;
height: 10px;
background: green;
}
|