tor-browser

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

flexbox_rowspan-ref.html (434B)


      1 <!DOCTYPE html>
      2 <title>flexbox | flexcontainers in cells with rowspan</title>
      3 <link rel="author" href="http://opera.com" title="Opera Software">
      4 <style>
      5 table {
      6 width: 600px;
      7 table-layout: fixed;
      8 border-spacing: 0;
      9 }
     10 td {
     11 background: blue;
     12 padding: 0;
     13 }
     14 div {
     15 background: white;
     16 height: 8em;
     17 }
     18 </style>
     19 
     20 <table>
     21 <tr>
     22 <td rowspan="2">
     23 <div></div>
     24 </td>
     25 <td>
     26 <div></div>
     27 </td>
     28 </tr>
     29 <tr>
     30 <td>
     31 <div></div>
     32 </td>
     33 </tr>
     34 </table>