blob: 92a00daa23a3d757d6aa259ab45aedc93664a41f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<body>
<style>
#a { border: 1px solid black; width: 100px; height: 100px; left: 10px; }
#b { border: 1px solid blue; width: 50px; height: 50px; left: 20px; }
div { position: absolute; }
</style>
<div id="a">
<div id="b">
</div>
</div>
</body>
</html>
|