|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <title></title> |
|
5 <style> |
|
6 #red { |
|
7 position: fixed; |
|
8 background-color: blue; |
|
9 top: 10px; |
|
10 left: 10px; |
|
11 } |
|
12 |
|
13 #green { |
|
14 position: fixed; |
|
15 background-color: blue; |
|
16 top: 10px; |
|
17 width: 80px; |
|
18 right: 10px; |
|
19 } |
|
20 |
|
21 #blue { |
|
22 position: fixed; |
|
23 background-color: blue; |
|
24 left: 10px; |
|
25 height: 80px; |
|
26 bottom: 10px; |
|
27 } |
|
28 |
|
29 #yellow { |
|
30 position: fixed; |
|
31 background-color: blue; |
|
32 right: 10px; |
|
33 width: 80px; |
|
34 height: 80px; |
|
35 bottom: 10px; |
|
36 } |
|
37 |
|
38 </style> |
|
39 <script> |
|
40 |
|
41 </script> |
|
42 </head> |
|
43 <body> |
|
44 |
|
45 <iframe id=red></iframe> |
|
46 <iframe id=green></iframe> |
|
47 <iframe id=blue></iframe> |
|
48 <iframe id=yellow></iframe> |
|
49 |
|
50 </body> |
|
51 </html> |