tor-browser

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

table-caption-top-2-ref.html (468B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <style type="text/css">
      5 .block {
      6 height: 20px;
      7 background-color: green;
      8 margin-bottom: 30px;
      9 }
     10 #table {
     11 width: 100px;
     12 }
     13 #caption {
     14 height: 20px;
     15 margin-bottom: 20px;
     16 background-color: blue;
     17 }
     18 #cell {
     19 height: 20px;
     20 margin-bottom: 10px;
     21 background-color: orange;
     22 }
     23 </style>
     24 </head>
     25 <body>
     26 <div class="block"></div>
     27 <div id="table">
     28 <div id="caption"></div>
     29 <div id="cell"></div>
     30 </div>
     31 <div class="block"></div>
     32 </body>
     33 </html>