Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <style type="text/css"> |
michael@0 | 4 | div { |
michael@0 | 5 | overflow: hidden; |
michael@0 | 6 | height: 100px; |
michael@0 | 7 | } |
michael@0 | 8 | table { |
michael@0 | 9 | table-layout: fixed; |
michael@0 | 10 | border: 1px solid #000; |
michael@0 | 11 | width: 100%; |
michael@0 | 12 | } |
michael@0 | 13 | td { |
michael@0 | 14 | border: 1px solid #000; |
michael@0 | 15 | } |
michael@0 | 16 | </style> |
michael@0 | 17 | </head> |
michael@0 | 18 | <body> |
michael@0 | 19 | <div> |
michael@0 | 20 | <table> |
michael@0 | 21 | <tr> |
michael@0 | 22 | <td width="200">Header1</td><td>Header2</td> |
michael@0 | 23 | </tr> |
michael@0 | 24 | <tr> |
michael@0 | 25 | <td>Cell1</td><td>Cell2</td> |
michael@0 | 26 | </tr> |
michael@0 | 27 | </table> |
michael@0 | 28 | </div> |
michael@0 | 29 | </body> |
michael@0 | 30 | </html> |