OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #outer { | |
4 width: 300px; | |
5 height: 300px; | |
6 background-color: blue; | |
7 position: relative; | |
8 } | |
9 #inner { | |
10 width: 100px; | |
11 height: 100px; | |
12 position: absolute; | |
13 left: 100px; | |
14 top: 100px; | |
15 background-color: green; | |
16 } | |
17 </style> | |
18 <div id=outer> | |
19 <div id=inner></div> | |
20 </div> | |
OLD | NEW |