|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <style type="text/css"> |
|
5 .block { |
|
6 height: 20px; |
|
7 background-color: green; |
|
8 } |
|
9 #table { |
|
10 margin-top: 10px; |
|
11 width: 100px; |
|
12 } |
|
13 #cell { |
|
14 height: 20px; |
|
15 margin-bottom: 20px; |
|
16 background-color: orange; |
|
17 } |
|
18 #caption { |
|
19 height: 20px; |
|
20 margin-bottom: 30px; |
|
21 background-color: blue; |
|
22 } |
|
23 </style> |
|
24 </head> |
|
25 <body> |
|
26 <div class="block"></div> |
|
27 <div id="table"> |
|
28 <div id="cell"></div> |
|
29 <div id="caption"></div> |
|
30 </div> |
|
31 <div class="block"></div> |
|
32 </body> |
|
33 </html> |