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 .other { | 6 .other { |
7 width: 200px; | 7 width: 200px; |
8 height: 200px; | 8 height: 200px; |
9 background-color: blue; | 9 background-color: blue; |
10 display: inline-block; | 10 display: inline-block; |
11 } | 11 } |
12 #target { | 12 #target { |
13 width: 100px; | 13 width: 100px; |
14 height: 100px; | 14 height: 100px; |
15 background-color: green; | 15 background-color: green; |
16 display: inline-block; | 16 display: inline-block; |
17 vertical-align: middle; | 17 vertical-align: middle; |
18 } | 18 } |
19 </style> | 19 </style> |
20 <div class="other"></div><div id="target"></div><div class="other"></div> | 20 <div class="other"></div><div id="target"></div><div class="other"></div> |
OLD | NEW |