tor-browser

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

grid-item-margin-left-right-auto-001-ref.html (3869B)


      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>Reference: margin-left/right:auto + justify-self</title>
      9  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1176793">
     10  <style type="text/css">
     11 html,body {
     12    color:black; background-color:white; font-size:16px; padding:0; margin:0;
     13 }
     14 separator { clear:both; display:block; height:6px; }
     15 
     16 .grid {
     17  display: grid;
     18  float: left;
     19  position: relative;
     20  border: 1px solid;
     21  /* border-inline-start: 2px solid lime; */
     22  border-inline-start: 2px solid black;
     23  grid-template: 1px 32px 3px / 3px 20px 2px;
     24  margin-right: 4px;
     25 }
     26 
     27 span {
     28  grid-area: 2 / 2; /* the center 32 x 20 pixel area */
     29  display: block;
     30  width: 13px;
     31  height: 9px;
     32  background: grey;
     33  border-block-start: 2px solid blue;
     34  border-inline-start: 2px solid lime;
     35  margin: 1px 0px 2px 0px; /* overconstrained - we'll fix that below */
     36  align-self: start;
     37 }
     38 
     39 .hl span { justify-self: center!important; }
     40 .hr span { justify-self: center!important; }
     41 .vl span { align-self: center!important; }
     42 
     43 abs1,abs2,abs3,abs4 {
     44  position: absolute;
     45  top:0;left:0;bottom:0;right:0;
     46  background: lightgrey;
     47 }
     48 abs1 { grid-area: 1 / 1 / 2 / 4; }
     49 abs2 { grid-area: 1 / 1 / 4 / 2; }
     50 abs3 { grid-area: 1 / 3 / 4 / 4; }
     51 abs4 { grid-area: 3 / 1 / 4 / 4; }
     52 
     53 .hl  { writing-mode: horizontal-tb; direction:ltr; }
     54 .hr  { writing-mode: horizontal-tb; direction:rtl; }
     55 .vl  { writing-mode: vertical-lr; }
     56 .vr  { writing-mode: vertical-rl; }
     57 .vlr { writing-mode: vertical-lr; direction:rtl; }
     58 .vrl { writing-mode: vertical-rl; direction:ltr; }
     59 
     60 .hl  { -webkit-writing-mode: horizontal-tb; direction:ltr; }
     61 .hr  { -webkit-writing-mode: horizontal-tb; direction:rtl; }
     62 .vl  { -webkit-writing-mode: vertical-lr; }
     63 .vr  { -webkit-writing-mode: vertical-rl; }
     64 .vlr { -webkit-writing-mode: vertical-lr; direction:rtl; }
     65 .vrl { -webkit-writing-mode: vertical-rl; direction:ltr; }
     66 
     67 .jstart { justify-self:start; }
     68 .jend { justify-self:end; }
     69 .jflexstart { justify-self:flex-start; }
     70 .jflexend { justify-self:flex-end; }
     71 .jselfstart { justify-self:self-start; }
     72 .jselfend { justify-self:self-end; }
     73 .jcenter { justify-self:center; }
     74 .jleft { justify-self:left; }
     75 .jright { justify-self:right; }
     76 .jstretch1 { justify-self:stretch; }
     77 .jstretch2 { justify-self:stretch; width:13px; height:auto; }
     78 .jstretch3 { justify-self:stretch; height:auto; }
     79 .jstretch4 { justify-self:stretch; width:auto; }
     80 .jstretch5 { justify-self:stretch; width:auto; max-width:13px; }
     81 .jstretch6 { justify-self:stretch; height:auto; max-height:9px; }
     82 .jstretch7 { justify-self:stretch; width:auto; height:auto; max-width:13px; max-height:9px; }
     83 .jauto { justify-self:auto; }
     84 
     85 </style>
     86 </head>
     87 <body>
     88 
     89 <script>
     90 var gridwm = [ "hl", "hr", "vl" ]; // *-002.html tests vr/vlr/vrl
     91 var wm = [ "hl", "hr", "vl", "vr", "vlr", "vrl" ];
     92 var test = [ "start", "end", "flexstart", "flexend", "center", "left", "right",
     93             "stretch1", "stretch2", "stretch3", "stretch4", "stretch5",
     94             "stretch6", "stretch7", "auto" ];
     95 for (var i = 0; i < gridwm.length; ++i) {
     96  for (var j = 0; j < wm.length; ++j) {
     97    for (var k = 0; k < test.length; ++k) {
     98      var div = document.createElement("div");
     99      div.className = "grid " + gridwm[i];
    100      var span = document.createElement("span");
    101      span.className = wm[j] + " j" + test[k];
    102      div.appendChild(span);
    103      div.appendChild(document.createElement("abs1"));
    104      div.appendChild(document.createElement("abs2"));
    105      div.appendChild(document.createElement("abs3"));
    106      div.appendChild(document.createElement("abs4"));
    107 
    108      document.body.appendChild(div)
    109    }
    110    document.body.appendChild(document.createElement("separator"));
    111  }
    112 }
    113 </script>
    114 
    115 
    116 </body>
    117 </html>