tor-browser

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

grid-col-max-sizing-max-content-001-ref.html (2886B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>CSS Grid Test: Testing track max-sizing 'max-content'</title>
      9  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151212">
     10  <style type="text/css">
     11 body,html { color:black; background:white; font-size:16px; padding:0; margin:0; }
     12 
     13 .grid {
     14 display: block;
     15 border: dashed blue;
     16 float:left;
     17 clear:left;
     18 }
     19 
     20 .c1 { width:40px; margin-bottom: 2px; margin-right: 47px; }
     21 .r1 { min-width:70px; margin-left: 38px; margin-top: 2px; }
     22 .c3 { width:10px; margin: 2px 18px 1px 71px; }
     23 
     24 span {
     25  display: block;
     26  background: gray;
     27  border-style: solid;
     28  border-width: 1px 3px 5px 7px;
     29  padding: 1px 3px;
     30  margin: 1px 5px;
     31 }
     32 
     33 x { display:inline-block; width:10px; height:18px; }
     34  </style>
     35 </head>
     36 <body>
     37 
     38 <div class="grid">
     39 <span class="c1"><x>&nbsp;</x></span>
     40 <span class="r1"><x>&nbsp;</x></span>
     41 </div>
     42 
     43 <div class="grid">
     44 <span class="c1" style="margin-right:54px"><x>&nbsp;</x></span>
     45 <span class="r1"><x>&nbsp;</x></span>
     46 <span class="c3"><x>&nbsp;</x></span>
     47 </div>
     48 
     49 <div class="grid">
     50 <span class="c1"><x>&nbsp;</x></span>
     51 <span class="r1"><x>&nbsp;</x></span>
     52 <span class="r1"><x>&nbsp;</x></span>
     53 <span class="r1"><x>&nbsp;</x></span>
     54 </div>
     55 
     56 <div class="grid" style="width:436px">
     57 <span class="c1" style="width:374px; margin-right:41px"><x>&nbsp;</x></span>
     58 <span class="r1" style="margin-left:5px"><x>&nbsp;</x></span>
     59 <span class="c3" style="margin-left:405px; float:left;margin-top:1px;"><x>&nbsp;</x></span>
     60 </div>
     61 
     62 <div class="grid" style="width:500px;">
     63 <span class="c1" style="width:20px;margin-right:448px"><x>&nbsp;</x></span>
     64 <span class="r1" style="min-width:10px;margin-left:28px; margin-right:426px"><x>&nbsp;</x></span>
     65 <span class="r1" style="min-width:30px;margin-left:28px; margin-right:426px"><x>&nbsp;</x></span>
     66 <span class="r1" style="min-width:10px;margin-left:28px; margin-right:426px"><x>&nbsp;</x></span>
     67 </div>
     68 
     69 <div class="grid" style="width:583px;">
     70 <span class="c1" style="width:507px; margin-right:55px"><x>&nbsp;</x></span>
     71 <span class="r1"><x>&nbsp;</x></span>
     72 <span class="c3" style="margin-left:538px; float:left;margin-top:1px;"><x>&nbsp;</x></span>
     73 </div>
     74 
     75 <div class="grid" style="width:389px;">
     76 <span class="c1" style="width:100px"><x>&nbsp;</x></span>
     77 <span class="r1" style="width:300px;margin-left:68px;"><x>&nbsp;</x></span>
     78 <span class="c3" style="margin-left:131px;float:left;margin-top:1px;"><x>&nbsp;</x></span>
     79 </div>
     80 
     81 <div class="grid" style="width:389px;">
     82 <span class="c1" style="width:100px"><x>&nbsp;</x></span>
     83 <span class="r1" style="width:300px;margin-left:68px;"><x>&nbsp;</x></span>
     84 <span class="c3" style="margin-left:131px;float:left;margin-top:1px;"><x>&nbsp;</x></span>
     85 </div>
     86 
     87 
     88 </body>
     89 </html>