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><head><title>455105-2</title> |
michael@0 | 3 | <style> |
michael@0 | 4 | div#below { |
michael@0 | 5 | position: absolute; |
michael@0 | 6 | top: 10px; left: 10px; |
michael@0 | 7 | width: 40px; |
michael@0 | 8 | height: 40px; |
michael@0 | 9 | border: 10px solid red; |
michael@0 | 10 | background-color: red; |
michael@0 | 11 | } |
michael@0 | 12 | div#above { |
michael@0 | 13 | position: absolute; |
michael@0 | 14 | top: 10px; left: 10px; |
michael@0 | 15 | width: 40px; |
michael@0 | 16 | height: 40px; |
michael@0 | 17 | border-width: 10px; |
michael@0 | 18 | border-style: solid; |
michael@0 | 19 | border-color: green; |
michael@0 | 20 | /* one pixel green */ |
michael@0 | 21 | background-image: url("data:image/gif;base64,\ |
michael@0 | 22 | R0lGODlhAQABAPAAAACAAAAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=="); |
michael@0 | 23 | /* three by three pixel transparent - drawn *instead of* regular border */ |
michael@0 | 24 | border-image: url("data:image/gif;base64,\ |
michael@0 | 25 | R0lGODlhAwADAPAAAAAAAAAAACH5BAEAAAAALAAAAAADAAMAAAIDhH8FADs=") 1 1; |
michael@0 | 26 | } |
michael@0 | 27 | </style> |
michael@0 | 28 | </head><body> |
michael@0 | 29 | <div id="below"></div> |
michael@0 | 30 | <div id="above"></div> |
michael@0 | 31 | </body></html> |