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: absolute;
8 background-color: blue;
9 top: 10px;
10 left: 10px;
11 right: 100px;
12 bottom: 100px;
13 }
15 #green {
16 position: absolute;
17 background-color: blue;
18 top: 10px;
19 width: 80px;
20 right: 10px;
21 bottom: 100px;
22 }
24 #blue {
25 position: absolute;
26 background-color: blue;
27 left: 10px;
28 height: 80px;
29 right: 100px;
30 bottom: 10px;
31 }
33 #yellow {
34 position: absolute;
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 <input id=red>
50 <input id=green>
51 <input id=blue>
52 <input id=yellow>
54 </body>
55 </html>