table-column-width.html (301B)
1 <!doctype html> 2 <link rel="match" href="table-column-width-ref.html"> 3 <table style="display: block"> 4 <colgroup style="display: block"> 5 <col style="border: 1px solid green; display: block" width="0"></col> 6 </colgroup> 7 </table> 8 <script> 9 document.querySelector("col").append("Text"); 10 </script>