tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

col-definite-size-001.html (1542B)


      1 <!doctype html>
      2 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      3 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#missing-cells-fixup">
      4 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#total-horizontal-border-spacing">
      5 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#outer-max-content">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1692607">
      7 <link rel="match" href="col-definite-size-001-ref.html">
      8 
      9 <table border="1" cellspacing="10">
     10  <colgroup>
     11    <col style="width:100px">
     12    <col style="width:100px">
     13    <col style="width:100px">
     14    <col style="width:100px">
     15  </colgroup>
     16  <thead>
     17    <tr>
     18      <td>1</td>
     19      <td>2</td>
     20    </tr>
     21  </thead>
     22 </table>
     23 
     24 <table border="1" cellspacing="10">
     25  <colgroup>
     26    <col style="width:calc(100px + 1%)">
     27    <col style="width:calc(100px + 1%)">
     28    <col style="width:calc(100px + 1%)">
     29    <col style="width:calc(100px + 1%)">
     30  </colgroup>
     31  <thead>
     32    <tr>
     33      <td>1</td>
     34      <td>2</td>
     35    </tr>
     36  </thead>
     37 </table>
     38 
     39 <table border="1" cellspacing="10">
     40  <colgroup>
     41    <col style="width:50%">
     42    <col style="width:50%">
     43    <col style="width:50%">
     44    <col style="width:50%">
     45  </colgroup>
     46  <thead>
     47    <tr>
     48      <td>1</td>
     49      <td>2</td>
     50    </tr>
     51  </thead>
     52 </table>
     53 
     54 <table border="1" cellspacing="10">
     55  <colgroup>
     56    <col>
     57    <col>
     58    <col style="width:0">
     59    <col style="width:0">
     60  </colgroup>
     61  <thead>
     62    <tr>
     63      <td>1</td>
     64      <td>2</td>
     65    </tr>
     66  </thead>
     67 </table>