OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <meta name="viewport" content="width=200"> | |
5 | |
6 <style type="text/css"> | |
7 body { | |
8 margin: 0px; | |
9 } | |
10 .upper { | |
11 background-color: #ffbbaa; | |
12 width: 200px; | |
13 height: 400px; | |
14 } | |
15 .lower { | |
16 background-color: #ffddaa; | |
17 width: 200px; | |
18 height: 400px; | |
19 } | |
20 .horizontal-link { | |
21 display:block; | |
22 width:200px; | |
23 height:30px; | |
24 margin-top:2px; | |
25 background-color:#ccccff; | |
26 } | |
27 </style> | |
28 </head> | |
29 <body> | |
30 <div class="upper"></div> | |
31 <div class="lower"> | |
32 <div style="height:200px"></div> | |
33 <a href="#" class="horizontal-link">Link 1</a> | |
34 <a href="#" class="horizontal-link">Link 2</a> | |
35 </div> | |
36 </body> | |
37 </html> | |
OLD | NEW |