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 type="text/css"> |
michael@0 | 5 | div { |
michael@0 | 6 | background-color: pink; |
michael@0 | 7 | } |
michael@0 | 8 | div div { |
michael@0 | 9 | float: left; |
michael@0 | 10 | width: 100px; height: 100px; |
michael@0 | 11 | margin: 4px; |
michael@0 | 12 | border: 1px solid #000; |
michael@0 | 13 | background-color: #eee; |
michael@0 | 14 | } |
michael@0 | 15 | br { |
michael@0 | 16 | clear: left; |
michael@0 | 17 | } |
michael@0 | 18 | a { |
michael@0 | 19 | outline: none; |
michael@0 | 20 | } |
michael@0 | 21 | </style> |
michael@0 | 22 | </head> |
michael@0 | 23 | <body> |
michael@0 | 24 | <div> |
michael@0 | 25 | <div> |
michael@0 | 26 | <a id="test" href="#">Link 1</a> |
michael@0 | 27 | </div> |
michael@0 | 28 | <div> |
michael@0 | 29 | <a href="#">Link 2</a> |
michael@0 | 30 | </div> |
michael@0 | 31 | <br> |
michael@0 | 32 | <div> |
michael@0 | 33 | <a href="#">Link 3</a> |
michael@0 | 34 | </div> |
michael@0 | 35 | <br> |
michael@0 | 36 | </div> |
michael@0 | 37 | </body> |
michael@0 | 38 | </html> |