OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <style> | 2 <style> |
3 body { | 3 body { |
4 margin: 0; | 4 margin: 0; |
5 } | 5 } |
6 div { | 6 div { |
7 position: absolute; | 7 position: absolute; |
8 background-color: green; | 8 background-color: green; |
9 } | 9 } |
10 .border-box { | 10 .border-box { |
11 width: 100px; | 11 width: 100px; |
12 height: 100px; | 12 height: 100px; |
13 box-sizing: border-box; | 13 box-sizing: border-box; |
14 } | 14 } |
15 .content-box { | 15 .content-box { |
16 width: 60px; | 16 width: 60px; |
17 height: 60px; | 17 height: 60px; |
18 box-sizing: content-box; | 18 box-sizing: content-box; |
19 border: blue solid 20px; | 19 border: blue solid 20px; |
20 } | 20 } |
21 </style> | 21 </style> |
22 <div id="target1" class="content-box" style="top: 0px"></div> | 22 <div id="target1" class="content-box" style="top: 0px"></div> |
23 <div id="target2" class="border-box" style="top: 200px"></div> | 23 <div id="target2" class="border-box" style="top: 200px"></div> |
OLD | NEW |