451876-1.html (436B)
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 onload="document.getElementById('bug').style.width='200px';"> 19 <div> 20 <table> 21 <tr> 22 <td width="100" id="bug">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>