Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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 right: 100px;
12 bottom: 100px;
13 }
15 #green {
16 position: fixed;
17 background-color: blue;
18 top: 10px;
19 width: 80px;
20 right: 10px;
21 bottom: 100px;
22 }
24 #blue {
25 position: fixed;
26 background-color: blue;
27 left: 10px;
28 height: 80px;
29 right: 100px;
30 bottom: 10px;
31 }
33 #yellow {
34 position: fixed;
35 background-color: blue;
36 right: 10px;
37 width: 80px;
38 height: 80px;
39 bottom: 10px;
40 }
42 </style>
43 <script>
45 </script>
46 </head>
47 <body>
49 <iframe id=red></iframe>
50 <iframe id=green></iframe>
51 <iframe id=blue></iframe>
52 <iframe id=yellow></iframe>
54 </body>
55 </html>