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