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 | <style> |
michael@0 | 5 | fieldset { |
michael@0 | 6 | display: inline; background: rgba(255, 255, 0, 0.7); color: black; |
michael@0 | 7 | } |
michael@0 | 8 | div { background: green; position:relative; z-index:1; } |
michael@0 | 9 | div#one { float: left; } |
michael@0 | 10 | </style> |
michael@0 | 11 | </head> |
michael@0 | 12 | <body> |
michael@0 | 13 | <form> |
michael@0 | 14 | <fieldset> |
michael@0 | 15 | <div id="one">I should be black text on a green background</div> |
michael@0 | 16 | </fieldset> |
michael@0 | 17 | <fieldset> |
michael@0 | 18 | <div>I should be black text on a green background</div> |
michael@0 | 19 | </fieldset> |
michael@0 | 20 | </form> |
michael@0 | 21 | </body> |
michael@0 | 22 | </html> |