Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
1 <html xmlns="http://www.w3.org/1999/xhtml">
3 <body onload="document.getElementById('table1').style.position = 'fixed';">
5 <table border="1" id="table1" style="border-collapse: collapse; color: red">
6 <tr>
7 <td style="float: left; overflow: auto;">1</td>
8 </tr>
9 </table>
11 <table border="1" style="border-collapse: collapse; color: green">
12 <tr>
13 <td>x</td>
14 </tr>
15 <tr style="display: inline-table">
16 <td>a</td>
17 <td style="display: table-column-group">b</td>
18 <td style="display: inline-table">c</td>
19 </tr>
20 </table>
22 </body>
24 </html>