Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title></title> |
michael@0 | 5 | <style> |
michael@0 | 6 | #red { |
michael@0 | 7 | position: absolute; |
michael@0 | 8 | background-color: blue; |
michael@0 | 9 | top: 10px; |
michael@0 | 10 | left: 10px; |
michael@0 | 11 | right: 100px; |
michael@0 | 12 | bottom: 100px; |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | #green { |
michael@0 | 16 | position: absolute; |
michael@0 | 17 | background-color: blue; |
michael@0 | 18 | top: 10px; |
michael@0 | 19 | width: 80px; |
michael@0 | 20 | right: 10px; |
michael@0 | 21 | bottom: 100px; |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | #blue { |
michael@0 | 25 | position: absolute; |
michael@0 | 26 | background-color: blue; |
michael@0 | 27 | left: 10px; |
michael@0 | 28 | height: 80px; |
michael@0 | 29 | right: 100px; |
michael@0 | 30 | bottom: 10px; |
michael@0 | 31 | } |
michael@0 | 32 | |
michael@0 | 33 | #yellow { |
michael@0 | 34 | position: absolute; |
michael@0 | 35 | background-color: blue; |
michael@0 | 36 | right: 10px; |
michael@0 | 37 | width: 80px; |
michael@0 | 38 | height: 80px; |
michael@0 | 39 | bottom: 10px; |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | </style> |
michael@0 | 43 | <script> |
michael@0 | 44 | |
michael@0 | 45 | </script> |
michael@0 | 46 | </head> |
michael@0 | 47 | <body> |
michael@0 | 48 | |
michael@0 | 49 | <textarea id=red></textarea> |
michael@0 | 50 | <textarea id=green></textarea> |
michael@0 | 51 | <textarea id=blue></textarea> |
michael@0 | 52 | <textarea id=yellow></textarea> |
michael@0 | 53 | |
michael@0 | 54 | </body> |
michael@0 | 55 | </html> |