1220621-1c.html (499B)
1 <!DOCTYPE html> 2 <style> 3 table { 4 table-layout: fixed; 5 border: 1px solid black; 6 width: 300px; 7 } 8 td { 9 background: yellow; 10 border: 1px solid purple; 11 } 12 </style> 13 <table> 14 <colgroup> 15 <col> 16 <col> 17 </colgroup> 18 <tbody> 19 <td>One</td> 20 <td>Two</td> 21 <td>Three</td> 22 </tbody> 23 </table> 24 <script> 25 var t = document.querySelector("table"); 26 // Flush layout 27 var width = t.offsetWidth; 28 // Remove the first col 29 document.querySelector("col").remove(); 30 </script>